-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
77 lines (77 loc) · 1.6 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
{
"name": "@xervo/cli",
"description": "The command line interface for deploying applications to the Xervo hosting platform.",
"keywords": [
"cli",
"modulus",
"xervo",
"hosting",
"cloud hosting",
"paas",
"platform-as-a-service",
"deployment",
"deploy",
"command line",
"xervoio",
"modulusio"
],
"version": "7.1.3",
"author": "Xervo <[email protected]>",
"maintainers": [
"Jack Boberg <[email protected]>",
"Jeremiah Harlan <[email protected]>"
],
"repository": {
"type": "git",
"url": "https://github.com/XervoIO/cli.git"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/XervoIO/cli/blob/master/LICENSE-MIT"
}
],
"dependencies": {
"@xervo/api-util": "0.2.0",
"async": "2.1.1",
"colors": "1.1.2",
"commander-plus": "0.0.6",
"find-file-sync": "0.0.4",
"fstream-ignore": "1.0.5",
"opener": "1.4.2",
"progress": "1.1.8",
"prompt": "1.0.0",
"request": "2.75.0",
"semver": "5.3.0",
"split": "1.0.0",
"text-table": "0.2.0",
"through": "2.3.8",
"underscore": "1.8.3",
"update-notifier": "1.0.2",
"uuid": "^3.0.0",
"zip-stream": "1.1.0"
},
"devDependencies": {
"code": "~1.5.0",
"lab": "~6.2.0",
"standard": "~8.6.0"
},
"main": "./lib/xervo",
"bin": {
"xervo": "./bin/xervo"
},
"preferGlobal": true,
"engines": {
"node": ">= 0.8.0"
},
"scripts": {
"lint": "standard -v",
"unit": "lab",
"test": "npm run lint && npm run unit"
},
"standard": {
"ignore": [
"/test/"
]
}
}