-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.1 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
{
"name": "repl-promise",
"version": "0.0.5",
"description": "An alternative REPL implementation using Promises.",
"bin": {
"repl-promise": "./bin/repl-promise"
},
"scripts": {
"test": "make"
},
"keywords": [
"repl",
"console",
"shell",
"promise",
"promises",
"q"
],
"author": "[email protected]",
"license": "ISC",
"dependencies": {
"chalk": "^0.5.1",
"lodash": "^2.4.1",
"q": "^1.0.1"
},
"devDependencies": {
"chai": "^1.9.1",
"chai-as-promised": "^4.1.1",
"concat-stream": "^1.4.6",
"debug": "^2.0.0",
"jshint": "^2.5.5",
"mocha": "^1.21.4"
},
"jshintConfig": {
"node": true,
"globalstrict": false,
"indent": 2,
"globals": {
"expect": true,
"describe": true,
"it": true
}
},
"main": "./lib/index.js",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "[email protected]:jimlloyd/repl-promise.git"
},
"bugs": {
"url": "https://github.com/jimlloyd/repl-promise/issues"
},
"homepage": "https://github.com/jimlloyd/repl-promise"
}