node-fetch/package.json

43 lines
1.1 KiB
JSON
Raw Normal View History

2015-01-26 01:02:34 -08:00
{
"name": "node-fetch",
2015-09-28 08:09:59 -07:00
"version": "1.3.3",
2015-02-06 03:15:37 -08:00
"description": "A light-weight module that brings window.fetch to node.js and io.js",
2015-01-26 01:02:34 -08:00
"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": {
"bluebird": "^3.3.4",
"chai": "^3.5.0",
"chai-as-promised": "^5.2.0",
2015-01-27 09:00:53 -08:00
"coveralls": "^2.11.2",
"form-data": "^1.0.0-rc1",
"istanbul": "^0.4.2",
2015-01-26 02:15:07 -08:00
"mocha": "^2.1.0",
"parted": "^0.1.1",
"promise": "^7.1.1",
2015-01-27 07:33:06 -08:00
"resumer": "0.0.0"
2015-01-27 05:11:26 -08:00
},
"dependencies": {
2016-03-19 03:06:33 -07:00
"encoding": "^0.1.11",
"is-stream": "^1.0.1"
2015-01-26 01:02:34 -08:00
}
}