-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 847 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 847 Bytes
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
{
"name": "papa-parse",
"description": "Polymer 2.0 element for CSV-parsing with Papaparse",
"main": "papa-parse.html",
"scripts": {
"serve": "npx polymer serve",
"lint": "npx eslint *.js",
"test": "echo \"Error: no test specified\" && exit 1",
"precommit": "lint-staged"
},
"lint-staged": {
"*.{js,json,css}": ["prettier --write", "git add"]
},
"keywords": ["polymer", "web-components", "csv", "papaparse"],
"author": "eterna2 <eterna2@hotmail.com>",
"license": "MIT",
"devDependencies": {
"bower": "^1.8.2",
"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",
"lint-staged": "^4.2.1",
"polymer-cli": "^1.5.4",
"prettier": "^1.7.0"
}
}