-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.27 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": "boe-list",
"version": "0.3.0",
"description": "A vertical flexbox list that shows a message when empty. Useful for lists with dismissible items.",
"main": "boe-list.html",
"directories": {
"test": "test"
},
"scripts": {
"test": "npm run static",
"static": "npm run static:js && npm run static:polymer",
"static:polymer": "polylint -i boe-list.html",
"static:js": "eslint boe-list.html"
},
"repository": {
"type": "git",
"url": "git+https://[email protected]/SupportClass/boe-list.git"
},
"keywords": [
"web-component",
"polymer",
"nodecg-element",
"nodecg"
],
"author": "Alex Van Camp <[email protected]> (http://alexvan.camp)",
"license": "MIT",
"bugs": {
"url": "https://github.com/SupportClass/boe-list/issues"
},
"homepage": "https://github.com/SupportClass/boe-list#readme",
"devDependencies": {
"eslint": "^2.0.0",
"eslint-config-xo": "^0.11.0",
"eslint-plugin-html": "^1.4.0",
"polylint": "^2.10.0"
},
"eslintConfig": {
"extends": "xo",
"plugins": [
"html"
],
"globals": {
"Polymer": true
},
"rules": {
"new-cap": [
2,
{
"capIsNewExceptions": [
"Polymer"
]
}
]
}
}
}