This repository has been archived by the owner on Jun 7, 2024. It is now read-only.
forked from speced/respec
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
109 lines (109 loc) · 3.4 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
{
"name": "respec",
"version": "35.1.0",
"license": "W3C",
"description": "A technical specification pre-processor.",
"engines": {
"node": ">=20.12.1"
},
"packageManager": "[email protected]",
"bin": {
"respec": "tools/respec2html.js",
"respec2html": "tools/respec2html.js"
},
"main": "./tools/respecDocWriter.js",
"type": "module",
"repository": {
"type": "git",
"url": "git://github.com/speced/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": "^5.1.0",
"@rollup/plugin-commonjs": "^25.0.8",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@types/pluralize": "0.0.33",
"boxen": "^7.1.1",
"chokidar": "^3.6.0",
"clean-css": "^5.3.3",
"epipebomb": "^1.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jasmine": "^4.1.3",
"eslint-plugin-prettier": "^5.1.3",
"highlight.js": "^11.9.0",
"hyperhtml": "^2.34.2",
"idb": "^8.0.0",
"jasmine": "^5.1.0",
"jasmine-core": "^5.1.2",
"karma": "^6.4.3",
"karma-chrome-launcher": "^3.2.0",
"karma-firefox-launcher": "^2.1.3",
"karma-jasmine": "^5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"karma-mocha-reporter": "^2.2.5",
"karma-safari-launcher": "^1.0.0",
"loading-indicator": "^2.0.0",
"pluralize": "^8.0.0",
"prettier": "^3.3.0",
"prompt": "^1.3.0",
"rollup": "^4.18.0",
"rollup-plugin-minify-html-literals": "^1.2.6",
"serve": "^14.2.3",
"serve-handler": "^6.1.5",
"sniffy-mimetype": "^1.1.1",
"typescript": "^5.4.5",
"vnu-jar": "^23.4.11",
"webidl2": "^24.4.1"
},
"scripts": {
"build:aom-debug": "pnpm build:aom -- --debug",
"build:aom": "pnpm builder aom",
"build:geonovum-debug": "pnpm build:geonovum -- --debug",
"build:geonovum": "pnpm builder geonovum",
"build:w3c-debug": "pnpm build:w3c -- --debug",
"build:w3c": "pnpm builder w3c",
"build:dini-debug": "pnpm build:dini -- --debug",
"build:dini": "pnpm builder dini",
"builddeps": "rollup -c js/deps/rollup.config.js --bundleConfigAsCjs && rollup -c worker/rollup.config.js --bundleConfigAsCjs",
"lint": "tsc -p src/jsconfig.json && eslint .",
"prepare": "pnpm builddeps",
"builder": "node ./tools/builder.cjs",
"release": "node ./tools/release.cjs",
"server": "serve",
"start": "node ./tools/dev-server.cjs",
"test:build": "jasmine --random=false ./tests/test-build.cjs",
"test:headless": "jasmine --random=false ./tests/headless.cjs",
"test": "pnpm test:unit && pnpm test:integration",
"test:unit": "karma start ./tests/unit/karma.conf.cjs --single-run",
"test:integration": "karma start ./tests/spec/karma.conf.cjs --single-run"
},
"dependencies": {
"colors": "1.4.0",
"finalhandler": "^1.2.0",
"marked": "^12.0.2",
"puppeteer": "^22.10.0",
"sade": "^1.8.1",
"serve-static": "^1.15.0"
},
"files": [
"builds/",
"tools/respec2html.js",
"tools/respecDocWriter.js"
],
"prettier": {
"trailingComma": "es5",
"arrowParens": "avoid"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/respec"
}
}