node-fetch/package.json

40 lines
1006 B
JSON
Raw Normal View History

2015-01-26 01:02:34 -08:00
{
"name": "node-fetch",
2015-01-28 06:58:55 -08:00
"version": "1.0.3",
2015-01-26 01:02:34 -08:00
"description": "A light-weight module that brings window.fetch to node.js",
"main": "index.js",
"scripts": {
2015-01-27 09:00:53 -08:00
"test": "mocha test/test.js",
"report": "istanbul cover _mocha -- -R spec test/test.js",
"coverage": "istanbul cover _mocha --report lcovonly -- -R spec test/test.js && cat ./coverage/lcov.info | coveralls"
2015-01-26 01:02:34 -08:00
},
"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-27 09:00:53 -08:00
"coveralls": "^2.11.2",
"istanbul": "^0.3.5",
2015-01-26 02:15:07 -08:00
"mocha": "^2.1.0",
2015-01-27 07:33:06 -08:00
"promise": "^6.1.0",
"resumer": "0.0.0"
2015-01-27 05:11:26 -08:00
},
"dependencies": {
"encoding": "^0.1.11"
2015-01-26 01:02:34 -08:00
}
}