1
0
mirror of https://github.com/danog/gift.git synced 2024-12-04 02:07:52 +01:00
gift/package.json

33 lines
811 B
JSON
Raw Normal View History

2012-02-15 15:51:45 +01:00
{ "name": "gift"
2012-03-23 20:11:55 +01:00
, "version": "0.0.5"
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"
, "coffee-script": "1.6.x"
2012-02-15 15:51:45 +01:00
}
, "engines": {"node": "> 0.4.1"}
}