-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.36 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
{
"name": "storm-testcases",
"version": "1.0.0",
"license": "Apache-2.0",
"author": "Michiel van der Geest <[email protected]>",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint '**/*.js'",
"lint:fix": "eslint '**/*.js' --fix"
},
"lint-staged": {
"*.js": [
"npm run lint:fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"post-merge": "node scripts/post-merge.js",
"post-rebase": "node scripts/post-merge.js"
}
},
"dependencies": {
"http": "0.0.0",
"http-server": "^14.1.1",
"httpclient": "^0.1.0",
"moment": "^2.29.4",
"node-resemble-js": "^0.2.0",
"pngjs": "^3.4.0",
"ssh2": "^1.4.0",
"ws": "^7.4.6"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.2.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-vue": "^5.2.2",
"husky": "^2.1.0",
"lint-staged": "^13.1.0",
"prettier": "^1.17.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WebPlatformForEmbedded/Storm-Testcases.git"
},
"bugs": {
"url": "https://github.com/WebPlatformForEmbedded/Storm-Testcases/issues"
},
"homepage": "https://github.com/WebPlatformForEmbedded/Storm-Testcases#readme"
}