-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 904 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
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "webidl-dfns",
"description": "Web IDL definitions of the web platform",
"version": "0.0.1",
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "https://github.com/foolip/webidl-dfns.git"
},
"engines": {
"node": ">=10"
},
"main": "index.js",
"scripts": {
"lint": "eslint .",
"lint-fix": "eslint --fix .",
"test": "mocha"
},
"devDependencies": {
"eslint": "7.9.0",
"eslint-config-google": "0.14.0",
"mocha": "8.1.3",
"webidl2": "23.13.0"
},
"peerDependencies": {
"webidl2": "23.x"
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"google"
],
"env": {
"es6": true,
"mocha": true,
"node": true
},
"parserOptions": {
"ecmaVersion": 2017
},
"rules": {
"require-jsdoc": "off"
},
"ignorePatterns": [
"webref/"
]
}
}