forked from rdkcentral/Lightning-SDK
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.32 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": "wpe-lightning-sdk",
"version": "2.4.0",
"scripts": {
"postinstall": "node ./scripts/postinstall.js",
"lint": "eslint '**/*.js'"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"src/startApp.js": [
"rollup -c ./rollup.config.js",
"git add support/startApp.js"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@babel/polyfill": "^7.8.7",
"deepmerge": "^4.2.2",
"localCookie": "github:WebPlatformForEmbedded/localCookie",
"shelljs": "^0.8.4",
"url-polyfill": "^1.1.8",
"whatwg-fetch": "^3.0.0",
"wpe-lightning": "^1.7.0"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-transform-parameters": "^7.9.5",
"@babel/plugin-transform-spread": "^7.8.3",
"@babel/preset-env": "^7.9.6",
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^3.1.0",
"lint-staged": "^9.5.0",
"prettier": "^1.19.1",
"rollup": "^1.32.1",
"rollup-plugin-babel": "^4.4.0"
},
"repository": {
"type": "git",
"url": "git@github.com:WebPlatformForEmbedded/Lightning-SDK.git"
},
"bugs": {
"url": "https://github.com/WebPlatformForEmbedded/Lightning-SDK/issues"
}
}