-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.12 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.12 KB
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
{
"name": "accessibility-checklist",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "eleventy --serve",
"build": "ELEVENTY_ENV=prod eleventy",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "npx stylelint 'src/css/checklist.css' && npx htmlhint 'public/**/*.html' && npx eslint 'src/js/*.js'",
"lint:css": "npx stylelint 'src/css/checklist.css'",
"lint:html": "npx htmlhint 'public/**/*.html'",
"lint:js": "npx eslint 'src/js/*.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NHSDigital/accessibility-checklist.git"
},
"keywords": [],
"author": "Michael Cheung",
"license": "ISC",
"bugs": {
"url": "https://github.com/NHSDigital/accessibility-checklist/issues"
},
"homepage": "https://github.com/NHSDigital/accessibility-checklist#readme",
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"eslint": "^8.23.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"htmlhint": "^1.1.4",
"stylelint": "^14.11.0",
"stylelint-config-standard": "^28.0.0"
}
}