-
Notifications
You must be signed in to change notification settings - Fork 278
/
package.json
89 lines (89 loc) · 1.96 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
{
"name": "vorpal",
"version": "1.11.4",
"description": "Node's first framework for building immersive CLI apps.",
"main": "./dist/vorpal.js",
"scripts": {
"test": "gulp build; mocha;",
"prepublish": "in-publish && gulp build || not-in-publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dthree/vorpal.git"
},
"keywords": [
"api",
"cli",
"repl",
"shell",
"immersive",
"framework",
"app",
"application",
"command",
"commander",
"automated",
"prompt",
"inquirer"
],
"author": "dthree",
"license": "MIT",
"bugs": {
"url": "https://github.com/dthree/vorpal/issues"
},
"homepage": "https://github.com/dthree/vorpal#readme",
"devDependencies": {
"babel": "^6.3.26",
"babel-core": "^6.4.5",
"babel-preset-es2015": "^6.3.13",
"bluebird": "^3.1.1",
"gulp": "^3.9.0",
"gulp-babel": "^6.1.2",
"gulp-changed": "^1.3.0",
"gulp-eslint": "^1.1.1",
"gulp-xo": "^0.7.0",
"load-plugins": "^2.1.0",
"mocha": "^2.2.5",
"moment": "^2.10.3",
"request": "^2.58.0",
"should": "^6.0.3",
"vorpal-less": "0.0.4",
"vorpal-repl": "^1.1.8",
"xo": "^0.9.0"
},
"dependencies": {
"babel-polyfill": "^6.3.14",
"chalk": "^1.1.0",
"in-publish": "^2.0.0",
"inquirer": "0.11.0",
"lodash": "^4.5.1",
"log-update": "^1.0.2",
"minimist": "^1.2.0",
"node-localstorage": "^0.6.0",
"strip-ansi": "^3.0.0",
"wrap-ansi": "^2.0.0"
},
"engines": {
"node": ">= 0.10.0",
"iojs": ">= 1.0.0"
},
"xo": {
"space": true,
"rules": {
"no-eval": 0,
"no-unused-expressions": 0,
"max-nested-callbacks": 0,
"no-proto": 0,
"wrap-iife": 0,
"global-require": 0,
"no-negated-condition": 0,
"no-loop-func": 0,
"no-implicit-coercion": 0,
"no-use-extend-native/no-use-extend-native": 0,
"no-undef": 0
}
},
"files": [
"dist"
]
}