forked from w3c/specberus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.12 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
{
"name": "specberus",
"version": "6.1.3",
"description": "Specberus is a checker used at W3C to validate the compliance of Technical Reports with publication rules.",
"license": "MIT",
"main": "lib/validator",
"repository": {
"type": "git",
"url": "https://github.com/w3c/specberus.git"
},
"dependencies": {
"compression": "1.7.4",
"cors": "2.8.5",
"doasync": "2.0.1",
"express": "4.19.2",
"express-handlebars": "6.0.1",
"insafe": "0.5.0",
"jsdom": "19.0.0",
"metaviewport-parser": "0.2.0",
"morgan": "1.10.0",
"node-w3capi": "1.11.0",
"promise": "8.1.0",
"puppeteer": "13.3.1",
"request": "2.88.2",
"socket.io": "4.4.0",
"superagent": "7.1.1"
},
"devDependencies": {
"chai": "4.3.4",
"chai-as-promised": "7.1.1",
"cspell": "5.18.0",
"eslint": "8.9.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "8.4.0",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-jsdoc": "37.9.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"expect.js": "0.3",
"husky": "7.0.4",
"jsdoc": "3.6.7",
"lint-staged": "12.3.2",
"minami": "1.2.3",
"mocha": "9.2.0",
"nock": "13.2.2",
"nodemon": "2.0.15",
"nyc": "15.1.0",
"prettier": "2.5.0"
},
"scripts": {
"build": "npm run lint && npm run test && npm run jsdoc",
"coverage": "nyc --reporter=html npm test",
"cspell": "cspell \"**/*\"",
"fix": "prettier -w . && eslint --fix .",
"jsdoc": "jsdoc --configure jsdoc.json -r app.js lib/ public/ test/ tools/",
"lint": "eslint . --report-unused-disable-directives && prettier -c .",
"live": "nodemon --use_strict app",
"prepare": "husky install",
"spelling": "cspell \"**/*\"",
"start": "node --use_strict app",
"test": "NO_THROTTLE=true mocha"
},
"engines": {
"node": "^14 || ^16",
"npm": ">=6"
},
"lint-staged": {
"*.js": "eslint --cache",
"*": [
"cspell --no-must-find-files",
"prettier --write --ignore-unknown"
]
},
"mocha": {
"colors": true,
"reporter": "spec",
"timeout": 20000
}
}