-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
42 lines (42 loc) · 1.15 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
{
"name": "accrefs",
"version": "2.3.2",
"description": "Web Accessibility References",
"keywords": [
"accrefs",
"accessibility",
"a11y"
],
"homepage": "https://github.com/oti/accrefs#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/oti/accrefs.git"
},
"bugs": {
"url": "https://github.com/oti/accrefs/issues"
},
"scripts": {
"clean": "rm -rf dist",
"build": "node task/build.mjs",
"draft": "node task/draft.mjs",
"lint": "node task/lint.mjs",
"markuplint": "markuplint 'dist/**/*.html'",
"postbuild": "npx prettier --write dist && npm run test",
"prebuild": "npm run lint & npm run clean",
"prepare": "husky install",
"serve": " cd dist && python3 -m http.server 3000",
"start": "npm run build && npm run serve",
"stylelint": "stylelint 'dist/**/*.css'",
"test": "npm run stylelint && npm run markuplint"
},
"devDependencies": {
"@prettier/plugin-pug": "^3.0.0",
"fast-glob": "^3.3.2",
"gray-matter": "^4.0.3",
"husky": "^8.0.3",
"marked": "^11.1.1",
"markuplint": "^3.15.0",
"pug": "^3.0.2",
"stylelint": "^16.1.0"
}
}