forked from danielmahon/gift
-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathpackage.json
42 lines (42 loc) · 943 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
41
42
{
"name": "gift",
"version": "0.10.2",
"description": "a Git wrapper library",
"keywords": [
"git",
"cli",
"wrapper"
],
"homepage": "https://github.com/notatestuser/gift",
"bugs": {
"url": "https://github.com/notatestuser/gift/issues"
},
"author": {
"name": "sentientwaffle",
"url": "http://sentientwaffle.github.com/"
},
"license": "MIT",
"main": "./lib/index",
"scripts": {
"test": "mocha --compilers coffee:\"./node_modules/coffee-script/lib/coffee-script/register\"",
"prepublish": "coffee -o lib -c src"
},
"repository": {
"type": "git",
"url": "https://github.com/notatestuser/gift.git"
},
"dependencies": {
"flex-exec": "^1.0.0",
"underscore": "^1.8.3"
},
"devDependencies": {
"coffee-script": "^1.12.7",
"fs-extra": "^4.0.2",
"mocha": "^10.2.0",
"should": "^13.1.3",
"sinon": "^4.1.1"
},
"engines": {
"node": ">=4"
}
}