-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
54 lines (54 loc) · 1.06 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": "mdn-confluence",
"version": "2.2.3",
"description": "User support tool for maintaining MDN compatibility data using Web API Confluence data.",
"scripts": {
"generate": "node ./main/generate.es6.js",
"lint": "eslint .",
"lint-fix": "eslint --fix ."
},
"author": "Mark Dittmer",
"contributors": [
"Philip Jägenstedt"
],
"engines": {
"node": ">=10.12.0"
},
"dependencies": {
"compare-versions": "^3.6.0",
"klaw": "^3.0.0",
"yargs": "^16.2.0"
},
"devDependencies": {
"eslint": "^7.8.1",
"eslint-config-google": "^0.14.0"
},
"eslintConfig": {
"env": {
"es6": true,
"node": true
},
"extends": [
"eslint:recommended",
"google"
],
"parserOptions": {
"ecmaVersion": 2017
},
"rules": {
"curly": [
"error",
"all"
],
"max-len": [
"error",
{
"ignoreStrings": true,
"ignoreTemplateLiterals": true,
"ignoreUrls": true
}
],
"require-jsdoc": "off"
}
}
}