123456789101112131415161718192021222324252627282930313233343536373839404142 |
- {
- "name": "node-fetch",
- "version": "1.7.3",
- "description": "A light-weight module that brings window.fetch to node.js and io.js",
- "main": "index.js",
- "scripts": {
- "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 && codecov"
- },
- "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",
- "codecov": "^1.0.1",
- "form-data": ">=1.0.0",
- "istanbul": "^0.4.2",
- "mocha": "^2.1.0",
- "parted": "^0.1.1",
- "promise": "^7.1.1",
- "resumer": "0.0.0"
- },
- "dependencies": {
- "encoding": "^0.1.11",
- "is-stream": "^1.0.1"
- }
- }
|