-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 922 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 922 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
30
31
32
33
34
35
36
37
{
"name": "@polymer-vis/web-worker",
"version": "2.0.0",
"description": "Polymer 2.0 element to data-bind with a web-worker or to run ad-hoc function asynchronously without blockin the UI thread.",
"main": "web-worker.html",
"scripts": {
"test": "npx wct test",
"precommit": "lint-staged"
},
"lint-staged": {
"./*.{js,json,html}": [
"prettier --write",
"git add"
]
},
"keywords": [
"polymer",
"web-components",
"webworker",
"worker",
"async"
],
"author": "eterna2 <eterna2@hotmail.com>",
"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",
"lint-staged": "^4.2.1",
"polymer-cli": "^1.5.4",
"prettier": "^1.7.0",
"wct-headless": "^2.2.0"
}
}