-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.54 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
{
"name": "@x-govuk/govuk-prototype-wizard",
"version": "0.4.0",
"description": "Build and iterate ‘one thing per page’ user journeys when prototyping GOV.UK services",
"keywords": [
"govuk",
"govuk-prototype-kit",
"prototype",
"express"
],
"homepage": "https://github.com/x-govuk/govuk-prototype-wizard#readme",
"bugs": {
"url": "https://github.com/x-govuk/govuk-prototype-wizard/issues"
},
"license": "MIT",
"files": [
"lib"
],
"main": "wizard.js",
"repository": {
"type": "git",
"url": "git+https://github.com/x-govuk/govuk-prototype-wizard.git"
},
"scripts": {
"lint:prettier": "prettier . --check",
"lint:prettier:fix": "prettier . --write",
"lint:js": "eslint '**/*.js'",
"lint:js:fix": "eslint '**/*.js' --fix",
"lint": "npm run lint:prettier && npm run lint:js",
"lint:fix": "npm run lint:prettier:fix && npm run lint:js:fix",
"test": "node --test",
"coverage": "node --test --experimental-test-coverage",
"release": "np"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"lodash.get": "^4.2.0",
"lodash.topath": "^4.2.0"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsdoc": "^48.0.0",
"eslint-plugin-n": "^16.4.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.1.0",
"np": "^10.0.0",
"prettier": "^3.1.0"
}
}