-
Notifications
You must be signed in to change notification settings - Fork 134
/
package.json
86 lines (86 loc) · 1.71 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
{
"name": "vantage",
"version": "1.7.0",
"description": "CLI + SSH + REPL for Node",
"main": "./lib/index.js",
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dthree/vantage.git"
},
"keywords": [
"api",
"cli",
"repl",
"shell",
"command",
"commander",
"distributed",
"automated",
"prompt",
"inquirer"
],
"author": "dthree",
"license": "MIT",
"preferGlobal": true,
"bin": {
"vantage": "./bin/vantage.js",
"vtg": "./bin/vantage.js",
"nsh": "./bin/vantage.js"
},
"bugs": {
"url": "https://github.com/dthree/vantage/issues"
},
"homepage": "https://github.com/dthree/vantage#readme",
"devDependencies": {
"eslint": "^1.2.1",
"express": "^4.12.4",
"gulp": "^3.9.0",
"gulp-eslint": "^1.0.0",
"hapi": "^8.8.1",
"koa": "^0.21.0",
"mocha": "^2.2.5",
"moment": "^2.10.3",
"request": "^2.58.0",
"should": "^6.0.3",
"vorpal-use": "^1.0.1"
},
"dependencies": {
"chalk": "^1.1.0",
"commander": "2.8.1",
"insubnet": "0.0.8",
"lodash": "3.10.0",
"native-promise-only": "0.8.0-a",
"socket.io": "1.4.5",
"socket.io-client": "1.4.5",
"strip-ansi": "^3.0.0",
"vantage-auth-basic": "^1.0.0",
"vorpal": "^1.11.1",
"vorpal-repl": "^1.1.8"
},
"engines": {
"node": ">= 0.10.0",
"iojs": ">= 1.0.0"
},
"files": [
"lib",
"bin",
"examples"
],
"eslintConfig": {
"env": {
"node": true,
"browser": false
},
"rules": {
"no-underscore-dangle": 0,
"no-process-exit": 0,
"no-undef": 0,
"no-proto": 0,
"no-use-before-define": 0,
"new-cap": 0
}
}
}