{ "name": "node-fetch", "version": "1.6.3", "description": "A light-weight module that brings window.fetch to node.js and io.js", "main": "lib/index.js", "scripts": { "build": "babel -d lib src", "prepublish": "npm run build", "test": "mocha --compilers js:babel-polyfill --compilers js:babel-register test/test.js", "report": "cross-env BABEL_ENV=test nyc --reporter lcov --reporter text mocha -R spec test/test.js", "coverage": "cross-env BABEL_ENV=test nyc --reporter json --reporter text mocha -R spec test/test.js && codecov -f coverage/coverage-final.json" }, "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": { "babel-cli": "^6.16.0", "babel-plugin-istanbul": "^2.0.1", "babel-plugin-transform-runtime": "^6.15.0", "babel-polyfill": "^6.16.0", "babel-preset-es2015": "^6.16.0", "babel-register": "^6.16.3", "bluebird": "^3.3.4", "chai": "^3.5.0", "chai-as-promised": "^5.2.0", "chai-iterator": "^1.1.1", "codecov": "^1.0.1", "cross-env": "2.0.1", "form-data": ">=1.0.0", "mocha": "^2.1.0", "nyc": "^8.3.0", "parted": "^0.1.1", "promise": "^7.1.1", "resumer": "0.0.0" }, "dependencies": { "babel-runtime": "^6.11.6", "buffer-to-arraybuffer": "0.0.4", "encoding": "^0.1.11", "is-stream": "^1.0.1" }, "babel": { "presets": [ ["es2015", {"loose": true}] ], "plugins": [ "transform-runtime" ], "env": { "test": { "plugins": [ "istanbul" ] } } }, "nyc": { "include": [ "src/*.js" ], "require": [ "babel-polyfill", "babel-register" ], "sourceMap": false, "instrument": false } }