-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.26 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
{
"name": "command-shell-lib",
"description": "Library to create command line interpreters for testing programs",
"version": "1.0.0",
"homepage": "https://github.com/telefonicaid/command-shell-lib",
"keywords": [
"command line",
"interpreter",
"readline"
],
"author": {
"name": "Daniel Moran",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git://github.com/telefonicaid/command-shell-lib.git"
},
"bugs": {
"url": "https://github.com/telefonicaid/command-shell-lib/issues"
},
"main": "lib/command-shell-lib",
"engines": {
"node": ">=0.10.8"
},
"scripts": {
"test": "grunt"
},
"dependencies": {
"async": "*"
},
"devDependencies": {
"should": "6.0.1",
"grunt-contrib-jshint": "~0.6.4",
"grunt-contrib-watch": "~0.5.3",
"grunt-gjslint": "~0.1.0",
"grunt": "~0.4.1",
"mocha": "~1.13.0",
"grunt-mocha-test": "~0.7.0",
"chai": "~1.8.0",
"sinon": "~1.7.3",
"istanbul": "~0.1.34",
"grunt-exec": "~0.4.0",
"grunt-dox": "~0.5.0",
"grunt-github-pages": "~0.0.3",
"grunt-plato": "~0.2.0",
"sinon-chai": "2.4.0",
"proxyquire": "0.5.1",
"grunt-mkdir": "~0.1.1",
"grunt-contrib-clean": "~0.5.0",
"grunt-githooks": "~0.3.1"
}
}