1
0
mirror of https://github.com/danog/gift.git synced 2024-12-03 09:47:53 +01:00
gift/package.json

34 lines
840 B
JSON
Raw Normal View History

2012-02-15 15:51:45 +01:00
{ "name": "gift"
2013-07-24 16:04:41 +02:00
, "version": "0.0.6"
2012-02-15 15:51:45 +01:00
, "description": "a Git wrapper library"
, "keywords": ["git"]
, "homepage": "https://github.com/sentientwaffle/gift"
, "bugs": {"url": "https://github.com/sentientwaffle/gift/issues"}
, "author":
{ "name": "sentientwaffle"
, "url": "http://sentientwaffle.github.com/"
}
, "main": "./lib/index"
, "scripts":
{ "test": "mocha --compilers coffee:'./node_modules/coffee-script/lib/coffee-script/coffee-script'"
2012-02-15 15:51:45 +01:00
, "prepublish": "coffee -o lib -c src"
}
, "repository":
{ "type": "git"
, "url": "https://github.com/sentientwaffle/gift.git"
}
, "dependencies": {"underscore": "1.x.x"}
, "devDependencies":
2013-03-13 22:24:57 +01:00
{ "should": "1.2.x"
2013-03-14 19:13:44 +01:00
, "mocha": "1.x.x"
, "sinon": "1.6.x"
2013-03-14 19:13:44 +01:00
, "coffee-script": "1.6.x"
2012-02-15 15:51:45 +01:00
}
, "engines": {"node": "> 0.4.1"}
}