{ "name": "node-fetch", "version": "2.0.0-alpha.4", "description": "A light-weight module that brings window.fetch to node.js", "main": "lib/index.js", "browser": "./browser.js", "module": "lib/index.es.js", "files": [ "lib/index.js", "lib/index.es.js" ], "engines": { "node": ">=4" }, "scripts": { "build": "cross-env BABEL_ENV=rollup rollup -c", "prepublish": "npm run build", "test": "cross-env BABEL_ENV=test mocha --compilers js:babel-register test/test.js", "report": "cross-env BABEL_ENV=coverage nyc --reporter lcov --reporter text mocha -R spec test/test.js", "coverage": "cross-env BABEL_ENV=coverage 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-plugin-istanbul": "^4.0.0", "babel-preset-env": "^1.1.10", "babel-register": "^6.16.3", "chai": "^3.5.0", "chai-as-promised": "^6.0.0", "chai-iterator": "^1.1.1", "chai-string": "^1.3.0", "codecov": "^1.0.1", "cross-env": "^3.1.4", "form-data": ">=1.0.0", "is-builtin-module": "^1.0.0", "mocha": "^3.1.2", "nyc": "^10.0.0", "parted": "^0.1.1", "promise": "^7.1.1", "resumer": "0.0.0", "rollup": "^0.41.4", "rollup-plugin-babel": "^2.6.1", "whatwg-url": "^4.0.0" }, "dependencies": { "encoding": "^0.1.11" } }