-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.4 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"type": "module",
"name": "govuk",
"description": "JavaScript API client for GOV.UK Content and Search APIs.",
"version": "0.0.0-development",
"source": "index.js",
"main": "index.js",
"module": "index.modern.js",
"unpkg": "index.modern.js",
"scripts": {
"build": "microbundle build --format modern --external none --alias node-fetch=unfetch,debug=src/debug.browser.js",
"test": "npm run lint && npm run ava:coverage",
"ava:coverage": "NODE_OPTIONS='--no-warnings --loader=esmock' c8 --100 ava",
"ava": "NODE_OPTIONS='--no-warnings --loader=esmock' ava",
"lint": "eslint *.js src/*.js && prettier --check *.js src/*.js",
"semantic-release": "semantic-release",
"commit": "commit"
},
"license": "MIT",
"files": [
"index.js",
"src/content.js",
"src/search.js",
"index.modern.js",
"index.modern.js.map"
],
"dependencies": {
"async-retry": "^1.3.3",
"debug": "^4.3.4",
"eventemitter3": "^4.0.7",
"node-fetch": "^3.2.10",
"throttled-queue": "^2.1.4",
"unfetch": "^4.2.0"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@commitlint/prompt-cli": "^17.1.2",
"ava": "^5.0.1",
"c8": "^7.12.0",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-n": "^15.4.0",
"eslint-plugin-prettier": "^4.2.1",
"esmock": "^2.0.7",
"microbundle": "^0.15.1",
"prettier": "^2.7.1",
"semantic-release": "^19.0.5"
},
"engines": {
"node": ">=16.x"
},
"publishConfig": {
"access": "public"
},
"release": {
"branches": [
"main"
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits"
}
],
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github"
]
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"plugin:n/recommended",
"prettier"
],
"plugins": [
"prettier"
],
"rules": {
"prettier/prettier": "error"
},
"parserOptions": {
"ecmaVersion": 2022
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/NickColley/govuk-api.git"
},
"bugs": {
"url": "https://github.com/NickColley/govuk-api/issues"
},
"homepage": "https://github.com/NickColley/govuk-api#readme"
}