forked from steveukx/git-js
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 872 Bytes
/
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
{
"name": "simple-git",
"description": "Simple GIT interface for node.js",
"version": "1.75.0",
"author": "Steve King <steve@mydev.co>",
"contributors": [
{
"name": "Steve King",
"email": "steve@mydev.co"
}
],
"dependencies": {
"debug": "^2.6.7"
},
"devDependencies": {
"grunt": "~0.4.1",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-nodeunit": "^0.4.1",
"grunt-release-steps": "~0.3.7",
"nodeunit": "^0.9.1",
"sinon": "^1.15.4"
},
"keywords": [
"git",
"source control",
"vcs"
],
"license": "MIT",
"repository": "git://github.com/steveukx/git-js.git",
"main": "src/index.js",
"bin": {},
"scripts": {
"test": "node node_modules/nodeunit/bin/nodeunit test/unit/test*.js"
},
"config": {},
"engines": {
"node": ">= 0.10.0"
}
}