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