node-fetch/package.json

81 lines
2.0 KiB
JSON
Raw Normal View History

2015-01-26 01:02:34 -08:00
{
"name": "node-fetch",
2016-09-25 23:16:41 -07:00
"version": "1.6.3",
2015-02-06 03:15:37 -08:00
"description": "A light-weight module that brings window.fetch to node.js and io.js",
"main": "lib/index.js",
2015-01-26 01:02:34 -08:00
"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",
2016-10-13 00:32:52 -07:00
"coverage": "cross-env BABEL_ENV=test 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": {
"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",
2016-10-10 12:05:02 -07:00
"chai-iterator": "^1.1.1",
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",
2015-01-26 02:15:07 -08:00
"mocha": "^2.1.0",
"nyc": "^8.3.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": {
"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"
},
"babel": {
"presets": [
2016-10-12 18:16:46 -07:00
["es2015", {"loose": true}]
],
"plugins": [
"transform-runtime"
],
"env": {
"test": {
"plugins": [
"istanbul"
]
}
}
},
"nyc": {
"include": [
"src/*.js"
],
"require": [
"babel-polyfill",
"babel-register"
],
"sourceMap": false,
"instrument": false
2015-01-26 01:02:34 -08:00
}
}