UNPKG

1.81 kBJSONView Raw
1{
2 "name": "vantage",
3 "version": "1.3.5",
4 "description": "A distributed, interactive CLI prompt for your application.",
5 "main": "./lib/vantage.js",
6 "scripts": {
7 "test": "mocha"
8 },
9 "repository": {
10 "type": "git",
11 "url": "git+https://github.com/dthree/vantage.git"
12 },
13 "keywords": [
14 "api",
15 "cli",
16 "repl",
17 "shell",
18 "command",
19 "commander",
20 "distributed",
21 "automated",
22 "prompt",
23 "inquirer"
24 ],
25 "author": "dthree",
26 "license": "MIT",
27 "preferGlobal": true,
28 "bin": {
29 "vantage": "./bin/vantage.js",
30 "vtg": "./bin/vantage.js",
31 "nsh": "./bin/vantage.js"
32 },
33 "bugs": {
34 "url": "https://github.com/dthree/vantage/issues"
35 },
36 "homepage": "https://github.com/dthree/vantage#readme",
37 "devDependencies": {
38 "express": "^4.12.4",
39 "gulp": "^3.9.0",
40 "gulp-eslint": "^0.15.0",
41 "hapi": "^8.8.1",
42 "koa": "^0.21.0",
43 "mocha": "^2.2.5",
44 "moment": "^2.10.3",
45 "request": "^2.58.0",
46 "should": "^6.0.3"
47 },
48 "dependencies": {
49 "chalk": "^1.1.0",
50 "commander": "^2.8.1",
51 "inquirer": "^0.8.5",
52 "insubnet": "0.0.8",
53 "lodash": "^3.10.0",
54 "minimist": "^1.1.2",
55 "native-promise-only": "^0.8.0-a",
56 "npm": "^3.1.3",
57 "socket.io": "^1.3.6",
58 "socket.io-client": "^1.3.6",
59 "strip-ansi": "^3.0.0",
60 "temp": "^0.8.3",
61 "vantage-auth-basic": "latest",
62 "vantage-repl": "latest"
63 },
64 "engines": {
65 "node": ">= 0.10.0",
66 "iojs": ">= 1.0.0"
67 },
68 "files": [
69 "lib",
70 "bin",
71 "examples"
72 ],
73 "eslintConfig": {
74 "env": {
75 "node": true,
76 "browser": false
77 },
78 "rules": {
79 "no-underscore-dangle": 0,
80 "no-process-exit": 0,
81 "no-undef": 0,
82 "no-proto": 0,
83 "no-use-before-define": 0,
84 "new-cap": 0
85 }
86 }
87}