forked from speced/respec
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
149 lines (149 loc) · 4.53 KB
/
Copy pathpackage.json
File metadata and controls
149 lines (149 loc) · 4.53 KB
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
{
"name": "respec",
"version": "37.0.0",
"license": "W3C",
"description": "A technical specification pre-processor.",
"engines": {
"node": ">=24"
},
"packageManager": "pnpm@10.30.1",
"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 <marcos@marcosc.com> (https://marcosc.com/)",
"Kagami Sascha Rosylight <saschaplas@outlook.com>",
"Sid Vishnoi <sidvishnoi8@gmail.com>",
"Robin Berjon"
],
"devDependencies": {
"@eslint/js": "^9.8.0",
"@rollup/plugin-commonjs": "^29.0.2",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^1.0.0",
"@types/pluralize": "0.0.33",
"boxen": "^8.0.1",
"cddlparser": "^0.6.0",
"chokidar": "^5.0.0",
"clean-css": "^5.3.3",
"epipebomb": "^1.0.0",
"eslint": "^9.8.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jasmine": "^4.2.2",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.6.0",
"highlight.js": "^11.11.1",
"hyperhtml": "^2.34.2",
"idb": "^8.0.3",
"jasmine": "^6.2.0",
"jasmine-core": "^6.2.0",
"karma": "^6.4.4",
"karma-chrome-launcher": "^3.2.0",
"karma-firefox-launcher": "^2.1.3",
"karma-jasmine": "^5.1.0",
"karma-jasmine-html-reporter": "^2.2.0",
"karma-mocha-reporter": "^2.2.5",
"karma-safari-launcher": "^1.0.0",
"lint-staged": "^16.4.0",
"loading-indicator": "^2.0.0",
"pluralize": "^8.0.0",
"prettier": "^3.8.3",
"prompt": "^1.3.0",
"rollup": "^4.60.2",
"rollup-plugin-minify-html-literals": "^1.2.6",
"serve": "^14.2.6",
"serve-handler": "^6.1.7",
"simple-git-hooks": "^2.13.1",
"sniffy-mimetype": "^1.1.1",
"typescript": "^6.0.3",
"vnu-jar": "^26.5.2",
"webidl2": "^24.5.0"
},
"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:nlgov-debug": "pnpm build:nlgov -- --debug",
"build:nlgov": "pnpm builder nlgov",
"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 && simple-git-hooks",
"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": "^2.1.1",
"marked": "^18.0.3",
"puppeteer": "^24.42.0",
"sade": "^1.8.1",
"serve-static": "^2.2.1"
},
"files": [
"builds/",
"tools/respec2html.js",
"tools/respecDocWriter.js"
],
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.js": "eslint --fix",
"*.{js,json,md,html,css}": "prettier --write"
},
"prettier": {
"trailingComma": "es5",
"arrowParens": "avoid"
},
"pnpm": {
"onlyBuiltDependencies": [
"puppeteer",
"simple-git-hooks"
],
"ignoredBuiltDependencies": [
"vnu-jar"
],
"overrides": {
"flatted": ">=3.4.2",
"jasmine>glob": ">=10.5.0",
"lodash": ">=4.18.0",
"qs": ">=6.14.2",
"socket.io-parser": ">=4.2.6",
"tmp": ">=0.2.4",
"ws": ">=8.17.1",
"eslint-plugin-import>minimatch": "^3.1.4",
"eslint>minimatch": "^3.1.4",
"eslint>brace-expansion": "^1.1.13",
"minimatch>brace-expansion": "^1.1.13",
"karma>minimatch": "^3.1.4",
"jasmine>minimatch": "^9.0.7",
"@rollup/pluginutils>picomatch": "^2.3.2",
"@rollup/plugin-commonjs>picomatch": "^4.0.4",
"anymatch>picomatch": "^2.3.2"
}
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/respec"
}
}