UNPKG

snekfetch

Version:

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

63 lines (62 loc) 1.82 kB
{ "name": "snekfetch", "version": "4.0.2", "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-cli", "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.3", "coveralls": "^3.0.1", "docma": "^2.1.0", "eslint": "^4.19.1", "eslint-config-airbnb": "^16.1.0", "eslint-plugin-import": "^2.11.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": "^22.4.3", "jsdoc-dynamic": "^1.0.4", "json-filter-loader": "^1.0.0", "node-fetch": "^2.1.2", "webpack": "^4.8.1", "webpack-cli": "^2.1.3" }, "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 } }