-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 983 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
{
"name": "@polymer-vis/utils-lib",
"description":
"Global namespace with some utilities functions for PolymerVis.",
"main": "polymer-vis.html",
"scripts": {
"lint": "npx eslint *.js",
"test": "echo \"Error: no test specified\" && exit 1",
"build":
"npx jsdoc2md --template README.hbs --files utils-lib.js > README.md",
"precommit": "lint-staged"
},
"lint-staged": {
"*.{html,js,json,css}": ["prettier --write", "git add"]
},
"keywords": ["polymer", "polymervis", "visualization", "web-components"],
"author": "eterna2 <[email protected]>",
"license": "MIT",
"devDependencies": {
"eslint": "^4.6.1",
"eslint-config-google": "^0.7.0",
"eslint-config-prettier": "^2.5.0",
"eslint-plugin-html": "^3.2.2",
"eslint-plugin-prettier": "^2.3.1",
"husky": "^0.14.3",
"jsdoc": "^3.5.5",
"jsdoc-to-markdown": "^3.0.0",
"lint-staged": "^4.2.1",
"polymer-cli": "^1.5.4",
"prettier": "^1.7.0"
}
}