UNPKG

1.41 kBJSONView Raw
1{
2 "name": "snekfetch",
3 "version": "3.6.1",
4 "main": "index.js",
5 "module": "esm.mjs",
6 "unpkg": "browser.js",
7 "jsdelivr": "browser.js",
8 "scripts": {
9 "lint": "npx eslint src",
10 "test": "node ./node_modules/.bin/jest",
11 "test:coveralls": "cat ./coverage/lcov.info | coveralls",
12 "docs": "node docs.js",
13 "build:browser": "webpack",
14 "prepublish": "npm run build:browser"
15 },
16 "repository": {
17 "type": "git",
18 "url": "git+https://github.com/devsnek/snekfetch.git"
19 },
20 "author": "Gus Caplan <me@gus.host>",
21 "license": "MIT",
22 "bugs": {
23 "url": "https://github.com/devsnek/snekfetch/issues"
24 },
25 "homepage": "https://snekfetch.js.org/",
26 "dependencies": {},
27 "devDependencies": {
28 "coveralls": "^3.0.0",
29 "docma": "^1.5.1",
30 "eslint": "^4.8.0",
31 "jest": "^21.2.1",
32 "jsdoc-dynamic": "^1.0.4",
33 "json-filter-loader": "^1.0.0",
34 "node-fetch": "github:bitinn/node-fetch",
35 "uglifyjs-webpack-plugin": "^1.0.0-beta.2",
36 "webpack": "^3.8.1"
37 },
38 "description": "Just do http requests without all that weird nastiness from other libs",
39 "browser": {
40 "./src/node/index.js": false,
41 "./src/meta.js": false
42 },
43 "jest": {
44 "collectCoverage": true,
45 "collectCoverageFrom": [
46 "src/**/*.js",
47 "!src/qs_mock.js",
48 "!src/node/mimeOfBuffer.js",
49 "!src/node/transports/http2.js"
50 ],
51 "verbose": true
52 }
53}