-
-
Notifications
You must be signed in to change notification settings - Fork 63
/
package.json
54 lines (54 loc) · 1.42 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
{
"name": "webidl2",
"description": "A WebIDL Parser",
"version": "24.4.1",
"contributors": [
"Robin Berjon <[email protected]> (https://berjon.com)",
"Marcos Caceres <[email protected]> (https://marcosc.com)",
"Kagami Sascha Rosylight <[email protected]>",
"Timothy Gu <[email protected]>"
],
"engines": {
"node": ">= 18"
},
"license": "W3C",
"devDependencies": {
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"expect": "^29.7.0",
"jsondiffpatch": "^0.6.0",
"mocha": "^10.8.2",
"prettier": "^3.3.3",
"terser-webpack-plugin": "^5.3.10",
"typescript": "^5.6.3",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4"
},
"scripts": {
"eslint": "eslint lib test",
"typecheck": "tsc -p jsconfig.json",
"lint": "npm run eslint && npm run typecheck",
"test": "npm run lint && webpack && mocha",
"acquire": "node test/util/acquire.js",
"build": "npx webpack",
"build-debug": "npx webpack --mode none",
"prepublishOnly": "npm run build"
},
"repository": "git://github.com/w3c/webidl2.js",
"main": "dist/webidl2.js",
"exports": {
".": {
"import": "./index.js",
"require": "./dist/webidl2.js"
},
"./productions": "./lib/productions/index.js"
},
"type": "module",
"files": [
"dist/*",
"lib/*",
"index.js"
]
}