node-fetch/package.json

64 lines
1.8 KiB
JSON
Raw Normal View History

2015-01-26 01:02:34 -08:00
{
"name": "node-fetch",
"version": "2.0.0-alpha.1",
"description": "A light-weight module that brings window.fetch to node.js",
"main": "lib/index.js",
"jsnext:main": "lib/index.es.js",
"files": [
"lib/index.js",
"lib/index.es.js"
],
2015-01-26 01:02:34 -08:00
"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"
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": {
2016-11-23 11:30:01 -08:00
"babel-plugin-istanbul": "^3.0.0",
"babel-plugin-transform-runtime": "^6.15.0",
2017-01-22 17:14:55 -08:00
"babel-preset-env": "^1.1.8",
"babel-register": "^6.16.3",
"bluebird": "^3.3.4",
"chai": "^3.5.0",
2016-11-23 11:30:01 -08:00
"chai-as-promised": "^6.0.0",
2016-10-10 12:05:02 -07:00
"chai-iterator": "^1.1.1",
2016-12-05 19:35:23 -08:00
"chai-string": "^1.3.0",
2016-10-13 00:32:52 -07:00
"codecov": "^1.0.1",
"cross-env": "2.0.1",
2016-09-25 23:16:32 -07:00
"form-data": ">=1.0.0",
"is-builtin-module": "^1.0.0",
2016-11-23 11:30:01 -08:00
"mocha": "^3.1.2",
"nyc": "^10.0.0",
"parted": "^0.1.1",
"promise": "^7.1.1",
2016-10-12 19:56:47 -07:00
"resumer": "0.0.0",
2016-12-14 13:54:31 -08:00
"rollup": "^0.37.0",
"rollup-plugin-babel": "^2.6.1",
"rollup-plugin-node-resolve": "^2.0.0",
2016-11-23 11:30:01 -08:00
"whatwg-url": "^4.0.0"
2015-01-27 05:11:26 -08:00
},
"dependencies": {
"babel-runtime": "^6.11.6",
2016-10-08 19:41:45 -07:00
"buffer-to-arraybuffer": "0.0.4",
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
}
}