forked from public-data-space/ids-fair
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 3.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "respec",
"version": "26.2.0",
"license": "W3C",
"description": "A technical specification pre-processor.",
"engines": {
"node": ">=10",
"npm": ">=5"
},
"bin": {
"respec": "tools/respec2html.js",
"respec2html": "tools/respec2html.js"
},
"main": "./tools/respecDocWriter.js",
"repository": {
"type": "git",
"url": "git://github.com/w3c/respec.git"
},
"contributors": [
"Marcos Cáceres <[email protected]> (https://marcosc.com/)",
"Kagami Sascha Rosylight <[email protected]>",
"Sid Vishnoi <[email protected]>",
"Robin Berjon"
],
"devDependencies": {
"@types/marked": "^2.0.0",
"@types/pluralize": "0.0.29",
"boxen": "^5.0.0",
"chai": "^4.3.3",
"chokidar": "^3.5.1",
"clean-css": "^5.1.1",
"epipebomb": "^1.0.0",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jasmine": "^4.1.2",
"eslint-plugin-prettier": "^3.3.1",
"hyperhtml": "^2.34.0",
"idb": "^6.0.0",
"jasmine": "^3.6.4",
"jquery": "^3.6.0",
"karma": "^6.1.1",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^2.1.0",
"karma-jasmine": "^4.0.1",
"karma-jasmine-html-reporter": "^1.5.4",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-safari-launcher": "^1.0.0",
"loading-indicator": "^2.0.0",
"marked": "^2.0.1",
"pluralize": "^8.0.0",
"prettier": "^2.2.1",
"prompt": "^1.1.0",
"rollup": "^2.40.0",
"rollup-plugin-alias": "^2.2.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^7.0.2",
"serve": "^11.3.2",
"typescript": "^4.2.3",
"webidl2": "^23.13.1"
},
"scripts": {
"build:geonovum-debug": "npm run build:geonovum -- --debug",
"build:geonovum": "node ./tools/builder.js geonovum",
"build:w3c-debug": "npm run build:w3c -- --debug",
"build:w3c-with-jquery": "node ./tools/builder.js w3c-common",
"build:w3c": "node ./tools/builder.js w3c",
"build:dini-debug": "node run build:dini -- --debug",
"build:dini": "node ./tools/builder.js dini",
"builddeps": "rollup -c js/deps/rollup.config.js",
"karma": "karma start --single-run",
"lint": "tsc -p src/jsconfig.json && eslint .",
"prepare": "npm run builddeps",
"release": "node ./tools/release.js",
"server": "serve",
"start": "node ./tools/dev-server.js",
"test:build": "jasmine --random=false ./tests/test-build.js",
"test:headless": "node ./tests/headless.js",
"test:karma": "npm run karma"
},
"dependencies": {
"colors": "^1.4.0",
"finalhandler": "^1.1.2",
"puppeteer": "^8.0.0",
"sade": "^1.7.4",
"serve-static": "^1.14.1"
},
"files": [
"builds/",
"tools/respec2html.js",
"tools/respecDocWriter.js"
],
"prettier": {
"trailingComma": "es5",
"arrowParens": "avoid"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/respec"
}
}