-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
62 lines (62 loc) · 1.33 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
{
"name": "nesh",
"version": "1.7.0",
"description": "An enhanced, extensible shell for Node.js",
"homepage": "http://danielgtaylor.github.io/nesh/",
"main": "lib/nesh.js",
"bin": {
"nesh": "./bin/nesh.js"
},
"scripts": {
"pretest": "./node_modules/coffee-script/bin/cake build",
"prepublish": "./node_modules/coffee-script/bin/cake build",
"test": "./node_modules/coffee-script/bin/cake test"
},
"repository": {
"type": "git",
"url": "https://github.com/danielgtaylor/nesh"
},
"bugs": {
"url": "https://github.com/danielgtaylor/nesh/issues"
},
"keywords": [
"script",
"interactive",
"shell",
"interpreter",
"extend",
"enhance",
"enhanced",
"embed",
"embedding",
"coffee",
"plugin",
"learn",
"try"
],
"author": {
"name": "Daniel G. Taylor",
"email": "[email protected]",
"url": "http://programmer-art.org/"
},
"license": "MIT",
"dependencies": {
"babel-core": "^5.4.7",
"colors": "^1.1.0",
"intdoc": "^1.2.0",
"lodash-node": "^3.9.3",
"optimist": ">=0.3.5 <1",
"semver": "^4.3.6",
"underscore": ">=1.4 <2"
},
"peerDependencies": {
"coffee-script": ">=1.6.2 <2"
},
"devDependencies": {
"coffee-script": ">=1.7 <2",
"mocha": "^2.2.5"
},
"engines": {
"node": ">=0.8.19"
}
}