-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1.07 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
{
"name": "fennch",
"version": "1.2.0-alpha",
"description": "Modern fetch-based HTTP client for the browser and node.js ",
"keywords": [
"fetch",
"fennch"
],
"main": "dist/fennch.js",
"module": "src/index.js",
"repository": "https://github.com/soal/fennch",
"author": "soal <[email protected]>",
"license": "MIT",
"scripts": {
"build": "webpack",
"watch": "webpack --watch"
},
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"abort-controller": "^3.0.0",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-polyfill": "^6.26.0",
"cache-loader": "^4.1.0",
"case-sensitive-paths-webpack-plugin": "^2.2.0",
"eslint": "^6.4.0",
"eslint-config-prettier": "^6.3.0",
"husky": "^3.0.5",
"koa": "^2.8.2",
"lint-staged": "^9.4.0",
"node-fetch": "^2.6.0",
"prettier": "^1.18.2",
"terser-webpack-plugin": "^2.1.0",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.9"
},
"dependencies": {
"qs": "^6.9.0",
"abort-controller": "^3.0.0"
}
}