-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 961 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 961 Bytes
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
{
"name": "simple-shell",
"version": "0.1.3",
"description": "A nodejs based custom command line interface (CLI) enabler",
"author": {
"name": "Bhagavan"
},
"repository": "https://github.com/bhagn/simple-shell",
"bugs": "https://github.com/bhagn/simple-shell/issues",
"license": "MIT",
"files": [
"index.js"
],
"keywords": [
"custom",
"cli",
"command",
"line",
"interface",
"shell"
],
"dependencies": {
"colors": "^1.0.3",
"figlet": "^1.1.0",
"inquirer": "^0.8.0",
"lodash": "^3.6.0"
},
"devDependencies": {
"grunt": "1.0.1",
"grunt-cli": "1.2.0",
"grunt-contrib-jshint": "1.1.0",
"grunt-contrib-nodeunit": "1.0.0",
"grunt-contrib-watch": "1.0.0",
"load-grunt-tasks": "3.5.2",
"time-grunt": "1.4.0",
"grunt-mocha-cli": "^1.11.0",
"jshint-stylish": "^1.0.0"
},
"scripts": {
"test": "grunt"
},
"engines": {
"node": ">=0.10.28"
}
}