-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 886 Bytes
/
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
{
"name": "webidl-updater",
"version": "1.0.0",
"description": "Update IDLs to match the latest Web IDL syntax",
"engines": {
"node": ">=14.0.0"
},
"main": "src/rewrite.js",
"type": "module",
"scripts": {
"test": "npm run lint",
"lint": "eslint --max-warnings 0 src",
"rewrite": "node src/rewrite.js",
"submit": "node src/submit.js",
"clean": "node src/clean.js"
},
"author": "Kagami Sascha Rosylight <[email protected]>",
"license": "ISC",
"dependencies": {
"@eslint/js": "^9.12.0",
"@octokit/rest": "^21.0.2",
"browser-specs": "^4.22.0",
"diff": "^7.0.0",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.10.0",
"jsdom": "^25.0.1",
"node-fetch": "^3.3.2",
"prettier": "^3.3.3",
"webidl2": "^24.4.1"
},
"private": true
}