forked from jsdom/webidl2js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 793 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
35
36
{
"name": "webidl2js",
"version": "16.2.0",
"description": "Auto-generates class structures for WebIDL specifications",
"main": "lib/transformer.js",
"files": [
"lib/"
],
"repository": "github:jsdom/webidl2js",
"dependencies": {
"prettier": "^2.2.1",
"webidl-conversions": "^6.1.0",
"webidl2": "^23.13.1"
},
"devDependencies": {
"@domenic/eslint-config": "^1.1.0",
"eslint": "^7.21.0",
"jest": "^26.6.3"
},
"scripts": {
"test": "jest",
"update-snapshots": "jest --updateSnapshot",
"lint": "eslint ."
},
"jest": {
"testEnvironment": "node",
"watchPathIgnorePatterns": [
"<rootDir>/test/output"
]
},
"engines": {
"node": ">=10"
},
"author": "Sebastian Mayr <[email protected]>",
"license": "MIT"
}