forked from rdkcentral/Lightning-CLI
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.5 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
{
"author": "Michiel van der Geest <m.van.der.geest@metrological.com>",
"license": "Apache-2",
"name": "wpe-lightning-cli",
"version": "1.4.0",
"description": "",
"bin": {
"lightning": "./bin/index.js",
"lng": "./bin/index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@babel/core": "^7.7.7",
"@babel/plugin-transform-parameters": "^7.7.7",
"@babel/plugin-transform-spread": "^7.7.4",
"@babel/preset-env": "^7.7.7",
"@rollup/plugin-alias": "^3.0.1",
"axios": "^0.19.0",
"chalk": "^3.0.0",
"commander": "^4.0.1",
"core-js": "^2.6.11",
"didyoumean2": "^4.0.0",
"execa": "^3.4.0",
"form-data": "^3.0.0",
"fs-extra": "^8.1.0",
"http-server": "^0.12.0",
"inquirer": "^7.0.0",
"is-online": "^8.2.1",
"ora": "^4.0.3",
"replace-in-file": "^4.2.0",
"rollup": "^1.27.13",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"semver": "^7.1.1",
"shelljs": "^0.8.3",
"targz": "^1.0.1",
"watch": "^1.0.2"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"eslint": "^6.7.1",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^3.1.0",
"lint-staged": "^9.4.3",
"prettier": "^1.19.1"
}
}