-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
34 lines (34 loc) · 843 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
{
"name": "git-tools",
"version": "0.3.0",
"description": "Tools for parsing data out of git repositories.",
"keywords": [
"git"
],
"homepage": "https://github.com/scottgonzalez/node-git-tools",
"bugs": "https://github.com/scottgonzalez/node-git-tools/issues",
"author": {
"name": "Scott González",
"email": "[email protected]",
"url": "http://scottgonzalez.com"
},
"license": "MIT",
"main": "git-tools.js",
"scripts": {
"lint": "standard",
"nodeunit": "nodeunit test/**",
"test": "npm run lint && npm run nodeunit"
},
"repository": {
"type": "git",
"url": "git://github.com/scottgonzalez/node-git-tools.git"
},
"dependencies": {
"spawnback": "~1.0.0"
},
"devDependencies": {
"nodeunit": "^0.11.2",
"rimraf": "~2.1.4",
"standard": "^10.0.3"
}
}