forked from webcomponents/webcomponents.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.19 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
55
56
{
"name": "webcomponents.org",
"version": "1.0.0",
"private": true,
"repository": {
"type": "git"
},
"scripts": {
"install": "pip install -t lib -r requirements.txt",
"lint": "grunt lint",
"client": "cd client && npm install && dev_appserver.py client.yaml"
},
"devDependencies": {
"eslint": "^3.3.1",
"eslint-config-google": "^0.5.0",
"eslint-config-xo": "^0.15.3",
"eslint-plugin-html": "^1.5.1",
"grunt": "^1.0.1",
"grunt-eslint": "^19.0.0",
"grunt-pylint": "^1.3.1",
"load-grunt-tasks": "^3.5.0",
"web-component-tester": "^4.3.1"
},
"eslintConfig": {
"extends": "google",
"env": {
"browser": true,
"node": true
},
"plugins": [
"html"
],
"globals": {
"CustomElements": true,
"HTMLImports": true,
"Polymer": true,
"grecaptcha": true
},
"rules": {
"new-cap": 0,
"max-len": 0,
"no-warning-comments": 0,
"curly": 0,
"comma-dangle": 0,
"eqeqeq": 0,
"no-eq-null": 0,
"require-jsdoc": 0,
"valid-jsdoc": 0,
"arrow-parens": 0
},
"parserOptions": {
"ecmaVersion": 8,
"sourceType": "module"
}
}
}