UNPKG

snekfetch

Version:

Just do http requests without all that weird nastiness from other libs

63 lines (62 loc) 1.83 kB
{ "name": "snekfetch", "version": "4.0.0", "main": "src/index", "module": "src/index.mjs", "unpkg": "browser.js", "jsdelivr": "browser.js", "scripts": { "setup": "install-peerdeps --dev eslint-config-airbnb", "lint": "eslint --ext=mjs,js src test sync.js webpack.config.js", "test": "node ./node_modules/.bin/jest", "coverage": "cat ./coverage/lcov.info | coveralls", "docs": "node docs.js", "build:browser": "webpack", "prepublishOnly": "npm run lint && npm run test && npm run build:browser" }, "repository": { "type": "git", "url": "git+https://github.com/devsnek/snekfetch.git", "homepage": "https://github.com/devsnek/snekfetch" }, "author": "Gus Caplan <me@gus.host>", "license": "MIT", "bugs": { "url": "https://github.com/devsnek/snekfetch/issues" }, "homepage": "https://snekfetch.js.org/", "dependencies": {}, "devDependencies": { "@snek/syncify": "0.0.6", "babel-eslint": "^8.2.2", "coveralls": "^3.0.0", "docma": "^1.5.1", "eslint": "^4.19.1", "eslint-config-airbnb": "^16.1.0", "eslint-plugin-import": "^2.10.0", "eslint-plugin-jsx-a11y": "^6.0.3", "eslint-plugin-react": "^7.7.0", "form-data": "^2.3.2", "install-peerdeps": "^1.6.0", "jest": "^21.2.1", "jsdoc-dynamic": "^1.0.4", "json-filter-loader": "^1.0.0", "node-fetch": "^2.1.2", "uglifyjs-webpack-plugin": "^1.2.4", "webpack": "^3.8.1" }, "description": "Just do http requests without all that weird nastiness from other libs", "browser": { "./src/node/index.js": false, "./src/meta.js": false }, "jest": { "collectCoverage": true, "collectCoverageFrom": [ "src/**/*.js", "!src/node/mimeOfBuffer.js", "!src/node/transports/http2.js" ], "verbose": true } }