-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 981 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
33
34
35
36
37
38
{
"author": "Michiel van der Geest <[email protected]>",
"name": "thunderjs-wpeframework-api-runner",
"version": "0.0.1",
"license": "apache",
"main": "index.js",
"scripts": {
"start": "node -r esm index.js",
"postinstall": "test -e config.js && echo config.js already exists || cp config.example.js config.js",
"lint": "eslint '**/*.{js}'",
"lint:fix": "eslint '**/*.{js}' --fix"
},
"lint-staged": {
"*.{js}": [
"npm run lint:fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"babel-eslint": "^10.0.1",
"chalk": "^2.4.2",
"contra": "^1.9.4",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-prettier": "^3.1.0",
"esm": "^3.2.25",
"husky": "^2.4.1",
"inquirer": "^6.5.0",
"lint-staged": "^8.2.1",
"prettier": "^1.18.2",
"thunderjs": "github:WebPlatformForEmbedded/ThunderJS"
}
}