node-fetch/package.json

63 lines
1.7 KiB
JSON
Raw Normal View History

2015-01-26 01:02:34 -08:00
{
"name": "node-fetch",
2018-03-04 20:41:14 -08:00
"version": "2.1.0",
"description": "A light-weight module that brings window.fetch to node.js",
"main": "lib/index.js",
2017-05-11 22:04:51 -07:00
"browser": "./browser.js",
2017-01-29 10:34:42 -08:00
"module": "lib/index.es.js",
"files": [
"lib/index.js",
"lib/index.es.js",
"browser.js"
],
2017-02-26 13:17:47 -08:00
"engines": {
"node": "4.x || >=6.0.0"
2017-02-26 13:17:47 -08:00
},
2015-01-26 01:02:34 -08:00
"scripts": {
"build": "cross-env BABEL_ENV=rollup rollup -c",
"prepare": "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": {
2018-01-27 11:39:47 -08:00
"babel-core": "^6.26.0",
"babel-plugin-istanbul": "^4.1.5",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.16.3",
"chai": "^3.5.0",
2017-07-27 21:12:54 -07:00
"chai-as-promised": "^7.1.1",
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",
2018-01-27 11:39:47 -08:00
"codecov": "^3.0.0",
"cross-env": "^5.1.3",
"form-data": "^2.3.1",
"mocha": "^5.0.0",
"nyc": "^11.4.1",
"parted": "^0.1.1",
2017-07-27 21:12:54 -07:00
"promise": "^8.0.1",
2016-10-12 19:56:47 -07:00
"resumer": "0.0.0",
2018-01-27 11:39:47 -08:00
"rollup": "^0.55.1",
"rollup-plugin-babel": "^3.0.3",
2018-03-04 16:40:39 -08:00
"string-to-arraybuffer": "^1.0.0",
2018-01-27 11:39:47 -08:00
"url-search-params": "^0.10.0",
2017-07-27 21:12:54 -07:00
"whatwg-url": "^5.0.0"
2015-01-27 05:11:26 -08:00
},
"dependencies": {}
2015-01-26 01:02:34 -08:00
}