-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.26 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.26 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
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
80
81
82
83
84
85
{
"name": "specberus",
"version": "12.3.1",
"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": {
"@octokit/core": "^7.0.6",
"cheerio": "^1.1.2",
"compression": "1.8.1",
"cors": "2.8.6",
"doasync": "2.0.1",
"express": "5.2.1",
"express-fileupload": "1.5.2",
"express-handlebars": "8.0.6",
"file-type": "21.3.3",
"insafe": "0.5.1",
"metaviewport-parser": "0.3.0",
"morgan": "1.10.1",
"node-w3capi": "2.2.2",
"promise": "8.3.0",
"puppeteer": "24.39.1",
"socket.io": "4.8.3",
"superagent": "10.3.0",
"tmp": "0.2.5"
},
"devDependencies": {
"@rvagg/chai-as-promised": "8.0.2",
"@types/express": "^5.0.6",
"@types/mocha": "^10.0.10",
"@types/node": "^24.10.9",
"@types/superagent": "^8.1.9",
"chai": "6.2.2",
"cspell": "9.0.2",
"domhandler": "^6.0.1",
"eslint": "10.0.3",
"eslint-config-prettier": "10.0.3",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "5.0.1",
"expect.js": "0.3",
"husky": "9.0.11",
"lint-staged": "16.4.0",
"lodash.merge": "^4.6.2",
"mocha": "11.7.5",
"nock": "15.0.0",
"nodemon": "3.0.3",
"nyc": "18.0.0",
"prettier": "3.8.1",
"typescript": "^5.9.3"
},
"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 && tsc && 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": "20 || 22 || 24",
"npm": ">=7"
},
"lint-staged": {
"*.js": "eslint --cache",
"*": [
"cspell --no-must-find-files",
"prettier --write --ignore-unknown"
]
},
"mocha": {
"colors": true,
"reporter": "spec",
"timeout": 40000
}
}