-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
80 lines (80 loc) · 2.16 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
80
{
"name": "echidna",
"version": "5.2.14",
"description": "Echidna — W3C's orchestrator for the new publication workflow",
"author": "W3C",
"type": "module",
"keywords": [
"w3c",
"publication"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/w3c/echidna"
},
"bugs": {
"url": "https://github.com/w3c/echidna/issues"
},
"dependencies": {
"@octokit/core": "6.1.2",
"body-parser": "1.20.3",
"compression": "1.7.4",
"express": "4.21.0",
"file-type": "19.6.0",
"immutable": "4.3.5",
"ip-range-check": "0.2.0",
"ldapauth-fork": "6.1.0",
"mkdirp": "3.0",
"moment": "2.30.1",
"multer": "1.4.3",
"nodemailer": "6.9.9",
"octokat": "0.10.0",
"passport": "0.7.0",
"passport-http": "0.3",
"promise": "8.3.0",
"request": "2.88.2",
"specberus": "11.4.3",
"tar-stream": "3.1.1",
"uuid": "10.0.0"
},
"devDependencies": {
"chai": "5.1.0",
"@rvagg/chai-as-promised": "8.0.1",
"coveralls": "3.1.1",
"cspell": "8.0.0",
"eslint": "9.0.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "5.0.0-alpha.2",
"husky": "9.0.6",
"ldapjs": "3.0.2",
"mocha": "10.8.2",
"morgan": "1.10.0",
"nyc": "17.1.0",
"prettier": "3.3.1"
},
"scripts": {
"audit": "npm audit | grep -oE 'https?\\:\\/\\/(www\\.)?(nodesecurity\\.io|npmjs\\.com)\\/advisories\\/[[:digit:]]+' | rev | cut -d '/' -f 1 | rev | diff known-vulns.txt -",
"cspell": "cspell *.md **/*.md **/*.css **/*.js *.js **/*.html **/*.tmpl",
"lint": "eslint app.js assets/js/ lib/",
"testserver": "NODE_ENV=test node test/lib/testserver",
"test": "NODE_ENV=test mocha",
"coverage": "nyc npm test",
"coveralls": "npm run coverage && cat ./coverage/lcov.info | coveralls",
"build": "npm run lint && npm run test",
"start": "node app",
"prepare": "husky install"
},
"engines": {
"node": "20 || 22",
"npm": ">=7"
},
"mocha": {
"colors": true,
"reporter": "spec",
"timeout": 30000
}
}