This repository has been archived by the owner on Nov 14, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 2.98 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "mesg-cli",
"description": "MESG CLI",
"version": "2.0.1",
"author": "Anthony ESTEBE @antho1404",
"bin": {
"mesg-cli": "./bin/run"
},
"bugs": "https://github.com/mesg-foundation/cli/issues",
"dependencies": {
"@oclif/command": "^1.5.19",
"@oclif/config": "^1.13.3",
"@oclif/errors": "^1.2.2",
"@oclif/plugin-autocomplete": "^0.1.4",
"@oclif/plugin-help": "^2.2.1",
"@oclif/plugin-not-found": "^1.2.3",
"@oclif/plugin-update": "^1.3.9",
"@oclif/plugin-warn-if-update-available": "^1.7.0",
"@types/js-yaml": "^3.12.1",
"axios": "^0.19.0",
"chalk": "^2.4.2",
"cli-ux": "^5.3.2",
"debug": "^4.1.1",
"download-tarball": "^2.0.0",
"git-clone": "^0.1.0",
"handlebars": "^4.3.0",
"hosted-git-info": "^3.0.0",
"ignore": "^5.1.4",
"inquirer": "^7.0.0",
"ipfs-http-client": "^29.1.1",
"is-git-url": "^1.0.0",
"js-yaml": "^3.13.1",
"lodash.pick": "^4.4.0",
"mesg-js": "^5.0.0",
"node-docker-api": "^1.1.22",
"rimraf": "^3.0.0",
"tar": "^4.4.11",
"tslib": "^1.10.0",
"uuid": "^3.3.3",
"validator": "^11.1.0"
},
"devDependencies": {
"@oclif/dev-cli": "^1.22.2",
"@oclif/test": "^1.2.5",
"@oclif/tslint": "^3.1.1",
"@types/chai": "^4.2.3",
"@types/hosted-git-info": "^2.7.0",
"@types/inquirer": "0.0.43",
"@types/is-git-url": "^1.0.0",
"@types/lodash.pick": "^4.4.6",
"@types/mocha": "^5.2.7",
"@types/node": "^10.14.18",
"@types/rimraf": "^2.0.2",
"@types/tar": "^4.0.3",
"@types/uuid": "^3.4.5",
"@types/validator": "^10.11.3",
"chai": "^4.2.0",
"globby": "^8.0.2",
"mocha": "^6.2.0",
"nyc": "^14.1.1",
"ts-node": "^8.4.1",
"tslint": "^5.20.0",
"typescript": "^3.6.3"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/lib",
"/assets",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/mesg-foundation/cli",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "mesg-cli",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-not-found"
],
"topics": {
"service": {
"description": "Manage services"
},
"process": {
"description": "Manage processes"
},
"daemon": {
"description": "Manage the Engine"
},
"account": {
"description": "Manage accounts"
}
}
},
"repository": "mesg-foundation/cli",
"scripts": {
"postpack": "rimraf oclif.manifest.json",
"posttest": "tslint -p test -t stylish",
"prepack": "rimraf lib tsconfig.tsbuildinfo && tsc -b && oclif-dev manifest && oclif-dev readme",
"test": "nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"",
"version": "oclif-dev readme && git add README.md",
"oclif-dev": "oclif-dev",
"lint": "tslint -p ./ -t stylish --fix",
"build": "tsc"
},
"types": "lib/index.d.ts"
}