forked from rdkcentral/Lightning-SDK
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.56 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
55
56
57
58
59
60
61
62
{
"name": "@lightningjs/sdk",
"version": "5.3.2",
"license": "Apache-2.0",
"types": "index.d.ts",
"scripts": {
"postinstall": "node ./scripts/postinstall.js",
"lint": "eslint '**/*.js'",
"release": "npm publish --access public",
"typedoc": "typedoc --tsconfig tsconfig.typedoc.json",
"tsd": "tsd"
},
"lint-staged": {
"*.js": [
"eslint --fix"
],
"src/startApp.js": [
"rollup -c ./rollup.config.js"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@babel/polyfill": "^7.11.5",
"@lightningjs/core": "^2.7.0",
"@metrological/sdk": "^1.0.0",
"@michieljs/execute-as-promise": "^1.0.0",
"deepmerge": "^4.2.2",
"is-plain-object": "^5.0.0",
"localcookies": "^2.0.0",
"shelljs": "^0.8.5",
"url-polyfill": "^1.1.10",
"whatwg-fetch": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-transform-parameters": "^7.10.5 ",
"@babel/plugin-transform-spread": "^7.11.0",
"@babel/preset-env": "^7.11.5",
"babel-eslint": "^10.1.0",
"eslint": "^7.10.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"prettier": "^1.19.1",
"rollup": "^1.32.1",
"rollup-plugin-babel": "^4.4.0",
"tsd": "^0.22.0",
"typedoc": "^0.23.9"
},
"repository": {
"type": "git",
"url": "[email protected]:rdkcentral/Lightning-SDK.git"
},
"bugs": {
"url": "https://github.com/rdkcentral/Lightning-SDK/issues"
}
}