forked from speced/respec
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
107 lines (107 loc) · 3.33 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
{
"name": "respec",
"version": "28.0.6",
"license": "W3C",
"description": "A technical specification pre-processor.",
"engines": {
"node": ">=16",
"npm": ">=7"
},
"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": {
"@rollup/plugin-alias": "^3.1.8",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"@types/marked": "^4.0.1",
"@types/pluralize": "0.0.29",
"boxen": "^6.2.1",
"chokidar": "^3.5.2",
"clean-css": "^5.2.2",
"epipebomb": "^1.0.0",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jasmine": "^4.1.2",
"eslint-plugin-prettier": "^4.0.0",
"highlight.js": "^11.3.1",
"hyperhtml": "^2.34.0",
"idb": "^7.0.0",
"jasmine": "^3.10.0",
"jasmine-core": "^3.10.1",
"karma": "^6.3.9",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^2.1.2",
"karma-jasmine": "^4.0.1",
"karma-jasmine-html-reporter": "^1.7.0",
"karma-mocha-reporter": "^2.2.5",
"karma-safari-launcher": "^1.0.0",
"loading-indicator": "^2.0.0",
"pluralize": "^8.0.0",
"prettier": "^2.4.1",
"prompt": "^1.2.0",
"rollup": "^2.60.1",
"rollup-plugin-minify-html-literals": "^1.2.6",
"rollup-plugin-terser": "^7.0.2",
"serve": "^13.0.2",
"sniffy-mimetype": "^1.1.1",
"typescript": "^4.5.2",
"vnu-jar": "^21.10.12",
"webidl2": "^24.2.0"
},
"scripts": {
"build:aom-debug": "npm run build:aom -- --debug",
"build:aom": "node ./tools/builder.js aom",
"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": "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 && rollup -c worker/rollup.config.js",
"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": "jasmine --random=false ./tests/headless.js",
"test": "npm run test:unit && npm run test:integration",
"test:unit": "karma start ./tests/unit/karma.conf.js --single-run",
"test:integration": "karma start ./tests/spec/karma.conf.js --single-run"
},
"dependencies": {
"colors": "^1.4.0",
"finalhandler": "^1.1.2",
"marked": "^4.0.4",
"puppeteer": "^11.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"
}
}