-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
46 lines (46 loc) · 1.06 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
{
"name": "git-cli",
"version": "0.11.0",
"description": "Simple CLI like git interface for NodeJS",
"main": "lib/git-cli.js",
"scripts": {
"test": "grunt test",
"prepublish": "grunt build"
},
"repository": {
"type": "git",
"url": "https://github.com/tuvistavie/node-git-cli.git"
},
"keywords": [
"git"
],
"author": "Daniel Perez",
"license": "MIT",
"bugs": {
"url": "https://github.com/tuvistavie/node-git-cli/issues"
},
"homepage": "https://github.com/tuvistavie/node-git-cli",
"devDependencies": {
"coffee-script": "^1.7.1",
"expect.js": "^0.3.1",
"grunt": "^0.4.4",
"grunt-cli": "^1.3.1",
"grunt-contrib-coffee": "^0.10.1",
"grunt-contrib-watch": "^0.6.1",
"grunt-exec": "^0.4.5",
"grunt-mocha-cov": "^0.4.0",
"mocha": "^2.4.5",
"tmp": "0.0.28"
},
"dependencies": {
"underscore": "^1.6.0",
"fs-extra": "^0.9.1"
},
"config": {
"blanket": {
"pattern": "src",
"loader": "./node-loaders/coffee-script",
"data-cover-never": "node_modules"
}
}
}