-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.64 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
{
"name": "storm-cli",
"version": "1.0.0",
"license": "Apache-2.0",
"author": "Michiel van der Geest <[email protected]>",
"scripts": {
"start": "node -r esm src/index.js",
"single": "node -r esm src/single.js",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint '**/*.js'",
"lint:fix": "eslint '**/*.js' --fix",
"postinstall": "(test -e config.js || cp config.example.js config.js) && (test -e testcases/Storm-Testcases || git clone https://github.com/WebPlatformForEmbedded/Storm-Testcases.git testcases/Storm-Testcases && cd testcases/Storm-Testcases && npm install)"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/WebPlatformForEmbedded/Storm-CLI.git"
},
"bugs": {
"url": "https://github.com/WebPlatformForEmbedded/Storm-CLI/issues"
},
"homepage": "https://github.com/WebPlatformForEmbedded/Storm-CLI#readme",
"dependencies": {
"ThunderJS": "github:rdkcentral/ThunderJS",
"chalk": "^2.4.2",
"contra": "^1.9.4",
"esm": "^3.2.22",
"inquirer": "^6.5.2",
"inquirer-checkbox-plus-prompt": "^1.0.1",
"log-update": "^3.4.0",
"moment": "^2.29.4",
"storm": "github:WebPlatformForEmbedded/Storm"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-vue": "^5.2.3",
"husky": "^2.7.0",
"lint-staged": "^13.1.0",
"prettier": "^1.19.1"
}
}