forked from w3c/webidl2.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.11 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
{
"name": "webidl2",
"description": "A WebIDL Parser",
"version": "23.13.0",
"contributors": [
"Robin Berjon <[email protected]> (https://berjon.com)",
"Marcos Caceres <[email protected]> (https://marcosc.com)",
"Kagami Sascha Rosylight <[email protected]>",
"Timothy Gu <[email protected]>"
],
"license": "W3C",
"dependencies": {},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.20.2",
"expect": "^26.0.0",
"jsondiffpatch": "^0.4.1",
"mocha": "^7.1.2",
"terser-webpack-plugin": "^3.0.0",
"typescript": "^3.8.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"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"
},
"repository": "git://github.com/w3c/webidl2.js",
"main": "dist/webidl2.js",
"module": "index.js",
"files": [
"dist/*",
"lib/*",
"index.js"
]
}