-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.02 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
{
"name": "axios-adapter-middle",
"version": "1.0.2",
"description": "axios adapter middle",
"main": "dist/commonjs/index.js",
"module": "dist/es6/index.js",
"scripts": {
"build": "npm run build:commodjs & npm run build:es6",
"build:commodjs": "tsc --module commonjs --outDir ./dist/commonjs/",
"build:es6": "tsc --module ESNext --outDir ./dist/es6/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bfc846958672/axios-adapter-middle.git"
},
"keywords": [
"axios",
"adapter"
],
"author": "baofuchun",
"license": "ISC",
"bugs": {
"url": "https://github.com/bfc846958672/axios-adapter-middle/issues"
},
"homepage": "https://github.com/bfc846958672/axios-adapter-middle#readme",
"devDependencies": {
"@types/koa-compose": "^3.2.5",
"typescript": "^4.3.5"
},
"peerDependencies": {},
"dependencies": {
"axios": "^0.21.1",
"koa-compose": "^4.1.0"
}
}