-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
77 lines (77 loc) · 2.01 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
{
"name": "specberus",
"version": "11.4.3",
"description": "Specberus is a checker used at W3C to validate the compliance of Technical Reports with publication rules.",
"license": "MIT",
"main": "lib/validator",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/w3c/specberus.git"
},
"dependencies": {
"compression": "1.7.4",
"cors": "2.8.5",
"doasync": "2.0.1",
"express": "5.0.1",
"express-fileupload": "1.5.0",
"express-handlebars": "8.0.1",
"file-type": "19.5.0",
"insafe": "0.5.1",
"jsdom": "25.0.0",
"metaviewport-parser": "0.3.0",
"morgan": "1.10.0",
"node-w3capi": "2.1.0",
"promise": "8.3.0",
"puppeteer": "23.6.0",
"socket.io": "4.8.0",
"superagent": "10.1.0",
"tmp": "0.2.3"
},
"devDependencies": {
"chai": "5.1.0",
"@rvagg/chai-as-promised": "8.0.1",
"cspell": "8.0.0",
"eslint": "9.0.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "5.0.0-alpha.2",
"expect.js": "0.3",
"husky": "9.0.6",
"lint-staged": "15.2.0",
"mocha": "10.8.2",
"nock": "13.5.0",
"nodemon": "3.0.1",
"nyc": "17.1.0",
"prettier": "3.3.0"
},
"scripts": {
"build": "npm run lint && npm run test",
"coverage": "nyc --reporter=html npm test",
"cspell": "cspell \"**/*\"",
"fix": "prettier -w . && eslint --fix .",
"lint": "eslint . --report-unused-disable-directives && prettier -c .",
"live": "nodemon --use_strict app",
"prepare": "husky install",
"spelling": "cspell \"**/*\"",
"start": "node --use_strict app",
"testserver": "nodemon test/lib/testserver.js",
"test": "NO_THROTTLE=true mocha"
},
"engines": {
"node": "18 || 20 || 22",
"npm": ">=7"
},
"lint-staged": {
"*.js": "eslint --cache",
"*": [
"cspell --no-must-find-files",
"prettier --write --ignore-unknown"
]
},
"mocha": {
"colors": true,
"reporter": "spec",
"timeout": 20000
}
}