forked from generalwrex/snekfetch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.91 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "snekfetch",
"version": "4.0.4",
"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",
"changelog": "git log dd0c84b^..HEAD --pretty=format:'* [[`%h`](https://github.com/devsnek/snekfetch/commit/%H)] - %s' > CHANGELOG.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devsnek/snekfetch.git",
"homepage": "https://github.com/devsnek/snekfetch"
},
"author": "Gus Caplan <[email protected]>",
"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
}
}