-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
84 lines (84 loc) · 1.76 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
76
77
78
79
80
81
82
83
84
{
"name": "kaizen-cli",
"version": "0.1.38",
"bin": {
"kaizen": "kaizen"
},
"description": "kaizen-cli",
"main": "kaizen",
"preferGlobal": true,
"dependencies": {
"@babel/core": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"aws-sdk": "^2.371.0",
"axios": "^0.19.0",
"chalk": "^3.0.0",
"clear": "^0.1.0",
"cli-table": "^0.3.1",
"colors": "^1.3.2",
"configstore": "^5.0.0",
"download": "^7.1.0",
"figlet": "^1.2.0",
"fs-extra": "^8.0.0",
"inquirer": "^7.0.0",
"ipfs-http-client": "^33.0.2",
"node-cmd": "^3.0.0",
"progress": "^2.0.0",
"prompt": "^1.0.0",
"url": "^0.11.0",
"web3": "^1.0.0-beta.36",
"yargs": "^15.0.1"
},
"scripts": {
"build": "babel src --out-dir build",
"lint": "eslint src/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PortalNetwork/kaizen-cli.git"
},
"eslintConfig": {
"parser": "babel-eslint",
"env": {
"browser": true,
"node": true,
"es6": true
},
"extends": "eslint:recommended",
"rules": {
"arrow-body-style": [
"warn",
"always"
],
"comma-dangle": [
"warn",
"never"
],
"no-console": 0,
"no-unused-vars": [
"warn"
]
}
},
"author": "Phyrex Tsai",
"license": "MIT",
"bugs": {
"url": "https://github.com/PortalNetwork/kaizen-cli/issues"
},
"homepage": "https://github.com/PortalNetwork/kaizen-cli#readme",
"directories": {
"lib": "lib"
},
"keywords": [
"blockchain",
"kaizen"
],
"devDependencies": {
"@babel/cli": "^7.1.0",
"@babel/core": "^7.1.0",
"@babel/node": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"babel-eslint": "^10.0.1",
"eslint": "^6.0.0"
}
}