forked from w3c/webidl2.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
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 <robin@berjon.com> (https://berjon.com)",
"Marcos Caceres <marcos@marcosc.com> (https://marcosc.com)",
"Kagami Sascha Rosylight <saschaplas@outlook.com>",
"Timothy Gu <timothygu99@gmail.com>"
],
"engines": {
"node": ">= 14"
},
"license": "W3C",
"devDependencies": {
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^5.0.0",
"expect": "^29.6.4",
"jsondiffpatch": "^0.5.0",
"mocha": "^10.2.0",
"prettier": "^3.0.3",
"terser-webpack-plugin": "^5.3.9",
"typescript": "^5.2.2",
"webpack": "^5.88.2",
"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"
]
}