node-fetch/package.json

32 lines
691 B
JSON
Raw Normal View History

2015-01-26 01:02:34 -08:00
{
"name": "node-fetch",
"version": "0.1.0",
"description": "A light-weight module that brings window.fetch to node.js",
"main": "index.js",
"scripts": {
"test": "mocha test/test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/bitinn/node-fetch.git"
},
"keywords": [
"fetch",
"http",
"promise"
],
"author": "David Frank",
"license": "MIT",
"bugs": {
"url": "https://github.com/bitinn/node-fetch/issues"
},
"homepage": "https://github.com/bitinn/node-fetch",
"devDependencies": {
2015-01-26 02:15:07 -08:00
"bluebird": "^2.9.1",
2015-01-26 01:02:34 -08:00
"chai": "^1.10.0",
"chai-as-promised": "^4.1.1",
2015-01-26 02:15:07 -08:00
"mocha": "^2.1.0",
"promise": "^6.1.0"
2015-01-26 01:02:34 -08:00
}
}