-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.33 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
{
"name": "lexeme-elements",
"version": "0.0.0",
"description": "A set of Polymer base classes and utility elements designed for use in NodeCG bundles.",
"main": "index.js",
"scripts": {
"pretest": "eslint **/*.js **/*.html && polymer lint",
"test": "wct test/**/*.html",
"serve": "polymer serve",
"prerelease": "npm t",
"release": "standard-version",
"postrelease": "git push --follow-tags"
},
"devDependencies": {
"@t2ym/polymer-cli": "^1.3.2",
"@t2ym/web-component-tester": "^6.0.1",
"coveralls": "^2.13.1",
"eslint": "^4.3.0",
"eslint-config-xo": "^0.18.1",
"eslint-plugin-html": "^3.1.1",
"standard-version": "^4.0.0",
"wct-istanbul": "^0.12.3"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/SupportClass/lexeme-elements.git"
},
"keywords": [
"NodeCG",
"Polymer",
"Elements",
"Library",
"Collection",
"Helper",
"Utility",
"Base"
],
"author": "Alex Van Camp <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/SupportClass/lexeme-elements/issues"
},
"homepage": "https://github.com/SupportClass/lexeme-elements#readme",
"files": [
"extensions",
"schemas/**/*.json",
"bin"
],
"nyc": {
"exclude": [
"**/bower_components",
"test"
]
}
}