forked from rdkcentral/Lightning
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1007 Bytes
/
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
{
"author": "Metrological, Bas van Meurs <b.van.meurs@metrological.com>",
"name": "@lightningjs/core",
"version": "2.2.0",
"license": "apache",
"main": "dist/lightning.js",
"module": "index.js",
"files": [
"index.js",
"src/**",
"dist/**",
"devtools/**"
],
"scripts": {
"build": "rollup -c",
"release": "npm run build && npm publish --access public"
},
"repository": {
"type": "git",
"url": "git@github.com:rdkcentral/Lightning.git"
},
"bugs": {
"url": "https://github.com/rdkcentral/Lightning/issues"
},
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/plugin-transform-parameters": "^7.8.3",
"@babel/plugin-transform-spread": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"chai": "^4.2.0",
"mocha": "^6.2.1",
"rollup": "^1.30.1",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-cleanup": "^3.1.1",
"rollup-plugin-license": "^0.10.0",
"rollup-plugin-terser": "^5.1.2",
"sinon": "^7.5.0"
}
}