-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
49 lines (49 loc) · 1.16 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
{
"name": "zy-fetch",
"version": "1.8.3",
"author": "anthinkingcoder <[email protected]>",
"private": false,
"scripts": {
"build": "webpack --config build/webpack.prod.config.js",
"dev": "webpack --config build/webpack.dev.config.js",
"compile": "rm -rf lib/* && babel src -d lib",
"test": "jest --config test/jest.config.js"
},
"dependencies": {
"node-fetch": "^2.2.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.0",
"jest-cli": "^23.5.0",
"webpack": "^4.16.5",
"webpack-cli": "^3.1.0",
"webpack-merge": "^4.1.4"
},
"keywords": [
"fetch",
"xhr",
"http client",
"interceptor",
"node"
],
"repository": {
"type": "git",
"url": "https://github.com/anthinkingcoder/zy-fetch.git"
},
"browser": {
"./lib/fetch/nodeFetch.js": "./lib/fetch/browerFetch.js"
},
"browserslist": [
"last 2 version",
"> 2%",
"ie 10"
],
"main": "./lib/fetchs.js",
"license": "MIT"
}