-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.22 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
{
"name": "axios-apicloud-adapter",
"version": "0.1.4",
"description": "axios 的 apicloud 适配器,以便于在 app 中使用原生网络请求库",
"main": "dist/index.js",
"jsnext:main": "src/index.js",
"module": "src/index.js",
"scripts": {
"prebuild": "npm run lint",
"build": "babel src/index.js --out-dir dist --presets=@babel/env",
"lint": "eslint src --fix",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/F-loat/axios-apicloud-adapter.git"
},
"keywords": [
"axios",
"apicloud",
"adapter"
],
"author": "F-loat <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/F-loat/axios-apicloud-adapter/issues"
},
"homepage": "https://github.com/F-loat/axios-apicloud-adapter#readme",
"dependencies": {
"axios": "^0.19.2"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"eslint": "^7.0.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1"
}
}