forked from speced/respec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 3.62 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
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "respec",
"version": "25.2.0",
"license": "W3C",
"description": "A technical specification pre-processor.",
"engines": {
"node": ">=10",
"npm": ">=5"
},
"bin": {
"respec2html": "./tools/respec2html.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": {
"@babel/core": "^7.8.4",
"@types/clipboard": "^2.0.1",
"@types/pluralize": "0.0.29",
"babel-eslint": "^10.0.3",
"boxen": "^4.2.0",
"chai": "^4.2.0",
"chokidar": "^3.3.1",
"domReady": "github:requirejs/domReady#d85bdc38a6df868ead52ab3e80715aaf60e68765",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jasmine": "^4.1.0",
"eslint-plugin-prettier": "^3.1.2",
"handlebars": "^4.7.2",
"highlight.js": "^9.18.1",
"hyperhtml": "^2.31.6",
"idb": "^5.0.1",
"jasmine-core": "^3.5.0",
"jasmine-reporters": "^2.3.2",
"jquery": "^3.4.1",
"karma": "^4.4.1",
"karma-chrome-launcher": "^3.1.0",
"karma-detect-browsers": "^2.3.3",
"karma-edge-launcher": "^0.4.2",
"karma-firefox-launcher": "^1.3.0",
"karma-jasmine": "^3.1.0",
"karma-jasmine-html-reporter": "^1.5.2",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-opera-launcher": "^1.0.0",
"karma-safari-launcher": "^1.0.0",
"karma-safaritechpreview-launcher": "2.0.2",
"karma-verbose-summary-reporter": "0.0.1",
"marked": "^0.8.0",
"mocha": "^7.0.1",
"moment": "^2.24.0",
"pluralize": "^8.0.0",
"prettier": "^1.19.1",
"rollup": "^1.31.0",
"rollup-plugin-alias": "^2.2.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-string": "^3.0.0",
"rollup-plugin-terser": "^5.2.0",
"serve": "^11.3.0",
"typescript": "^3.7.5",
"webidl2": "^23.10.1"
},
"scripts": {
"build:geonovum-debug": "npm run build:geonovum -- --debug",
"build:geonovum": "node ./tools/builder.js --profile=geonovum",
"build:w3c-debug": "npm run build:w3c -- --debug",
"build:w3c-with-jquery": "node ./tools/builder.js --profile=w3c-common",
"build:w3c": "node ./tools/builder.js --profile=w3c",
"build:dini-debug": "node run build:dini -- --debug",
"build:dini": "node ./tools/builder.js --profile=dini",
"build": "snyk protect",
"builddeps": "rollup -c js/deps/rollup.config.js",
"karma": "karma start --single-run",
"lint": "tsc -p src/jsconfig.json && eslint .",
"prepare": "npm run snyk-protect && npm run builddeps",
"release": "node ./tools/release.js",
"server": "serve",
"snyk-protect": "snyk protect",
"snyk": "snyk",
"start": "node ./tools/dev-server.js",
"test:build": "mocha --timeout 60000 ./tests/test-build.js",
"test:headless": "node ./tests/headless.js",
"test:karma": "npm run karma",
"postinstall": "opencollective-postinstall"
},
"dependencies": {
"colors": "^1.4.0",
"command-line-args": "^5.1.1",
"command-line-usage": "^6.1.0",
"epipebomb": "^1.0.0",
"loading-indicator": "^2.0.0",
"opencollective": "^1.0.3",
"opencollective-postinstall": "^2.0.2",
"prompt": "^1.0.0",
"puppeteer": "^2.1.0",
"snyk": "^1.290.1"
},
"prettier": {
"trailingComma": "es5"
},
"snyk": true,
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/respec"
}
}