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