-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.59 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
{
"name": "http-request-decorator",
"version": "1.1.0",
"description": "基于 axios 和 ES Decorator ,用更优雅的 AOP 方式实现异步网络请求",
"main": "./dist/index.js",
"directories": {
"lib": "lib"
},
"keywords": [
"decorators",
"axios",
"http-request",
"es-decorators",
"http-request-decorator"
],
"files": [
"dist",
"types"
],
"types": "./types/index.d.ts",
"scripts": {
"test": "jest",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/f840415070/http-request-decorator.git"
},
"author": "fanyibin",
"license": "MIT",
"bugs": {
"url": "https://github.com/f840415070/http-request-decorator/issues"
},
"homepage": "https://github.com/f840415070/http-request-decorator#readme",
"dependencies": {
"axios": "^0.21.1",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-decorators": "^7.14.2",
"@babel/plugin-proposal-private-methods": "^7.13.0",
"@babel/plugin-transform-runtime": "^7.14.3",
"@babel/preset-env": "^7.14.2",
"@babel/preset-typescript": "^7.13.0",
"@types/jest": "^26.0.23",
"@types/mockjs": "^1.0.3",
"@typescript-eslint/eslint-plugin": "^4.24.0",
"@typescript-eslint/parser": "^4.24.0",
"babel-plugin-transform-typescript-metadata": "^0.3.2",
"eslint": "^7.26.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.23.2",
"jest": "^26.6.3",
"mockjs": "^1.1.0",
"typescript": "^4.2.4"
}
}