forked from rdkcentral/Lightning-CLI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.08 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
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"author": "Michiel van der Geest <m.van.der.geest@metrological.com>",
"license": "Apache-2",
"name": "@lightningjs/cli",
"version": "2.7.2",
"description": "Lightning-CLI: Command Line Interface tool for a seamless Lightning App Development flow",
"bin": {
"lightning": "./bin/index.js",
"lng": "./bin/index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"release": "npm publish --access public"
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.12.13",
"@babel/plugin-transform-parameters": "^7.10.5",
"@babel/plugin-transform-spread": "^7.11.0",
"@babel/preset-env": "^7.11.5",
"@rollup/plugin-alias": "^3.1.1",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-image": "^2.0.5",
"@rollup/plugin-inject": "^4.0.2",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-virtual": "^2.0.3",
"axios": "^0.20.0",
"babel-plugin-inline-json-import": "^0.3.2",
"chalk": "^4.1.0",
"commander": "^6.1.0 ",
"concat": "^1.0.3",
"core-js": "^3.6.5",
"didyoumean2": "^4.1.0",
"dotenv": "^8.2.0",
"esbuild": "^0.12.20",
"execa": "^4.0.3",
"form-data": "^3.0.0",
"fs-extra": "^9.0.1",
"http-server": "^14.1.0",
"inquirer": "^7.3.3",
"is-online": "^8.4.0",
"latest-version": "^5.1.0",
"ora": "^5.1.0",
"replace-in-file": "^6.1.0",
"rollup": "^2.28.2",
"rollup-plugin-license": "^2.2.0",
"rollup-plugin-terser": "^7.0.2",
"semver": "^7.3.2",
"shelljs": "^0.8.4",
"targz": "^1.0.1",
"watch": "^1.0.2",
"ws": "^7.4.2"
},
"devDependencies": {
"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"
}
}