-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.28 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
{
"name": "storm",
"version": "0.1.0",
"author": "Michiel van der Geest <[email protected]>",
"main": "src/index.js",
"scripts": {
"test": "tape -r esm './{,!(node_modules)/**}/*.spec.js' | tap-diff",
"lint": "eslint '**/*.js'",
"lint:fix": "eslint '**/*.js' --fix"
},
"lint-staged": {
"*.js": [
"npm run lint:fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/WebPlatformForEmbedded/Storm.git"
},
"bugs": {
"url": "https://github.com/WebPlatformForEmbedded/Storm/issues"
},
"homepage": "https://github.com/WebPlatformForEmbedded/Storm#readme",
"dependencies": {
"ThunderJS": "github:rdkcentral/ThunderJS#v1.2.3",
"axios": "^1.6.0",
"chai": "^4.2.0",
"contra": "^1.9.4",
"moment": "^2.29.4"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-vue": "^5.2.3",
"esm": "^3.2.25",
"husky": "^2.7.0",
"lint-staged": "^13.1.0",
"prettier": "^1.19.1",
"sinon": "^7.5.0",
"tap-diff": "^0.1.1",
"tape": "^4.13.2",
"tape-promise": "^4.0.0"
}
}