-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.35 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "js-xhttp",
"version": "1.6.5",
"description": "An HTTP tool is based on Axios that can make ajax more convenient and universal, easier to manage, and more efficient and unified.",
"main": "lib/index.js",
"module": "es/index.js",
"unpkg": "dist/xhttp.js",
"main-source": "lib/index.source.js",
"module-source": "es/index.source.js",
"unpkg-source": "dist/xhttp.source.js",
"iife": "xhttp.js",
"iife-source": "xhttp.source.js",
"scripts": {
"tsc": "tsc",
"build": "rollup -c",
"test": "test",
"mock666": "npm install --force && node ./mocker/index.js",
"clear": "rimraf ./node_modules && npm run remove",
"remove": "rimraf ./dist && rimraf ./es && rimraf ./lib",
"doc": "typedoc --options ./typedoc.json",
"pub": "npm install --force && npm run build && npm run doc && node ./auto-pub.js",
"pub:local": "npm install --force && npm run build && npm run doc && node ./auto-pub.js true"
},
"files": [
"/lib",
"/es",
"/dist",
"/xhttp.js",
"/xhttp.source.js",
"/README.en.md",
"/README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/pandaoh/js-xhttp.git"
},
"author": "hxb",
"publisher": "[email protected]",
"blog": "http://a.biugle.cn",
"license": "ISC",
"bugs": {
"url": "https://github.com/pandaoh/js-xhttp/issues"
},
"homepage": "https://github.com/pandaoh/js-xhttp#readme",
"keywords": [
"xhttp",
"js-xhttp",
"ajax",
"axios",
"http",
"ajax封装",
"axios封装",
"http封装",
"请求",
"request",
"typescript",
"rollup"
],
"dependencies": {
"axios": "^0.25.0",
"axios-retry": "^3.2.4",
"typescript": "^4.5.5"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"@types/node": "^17.0.17",
"@types/tunnel": "^0.0.3",
"clean-webpack-plugin": "^4.0.0",
"koa": "^2.13.4",
"koa-bodyparser": "^4.3.0",
"koa-router": "^10.1.1",
"node-cmd": "^5.0.0",
"rollup": "^2.67.0",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-polyfill-node": "^0.8.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.2",
"ts-loader": "^9.2.6",
"typedoc": "^0.24.7",
"typedoc-plugin-markdown": "^3.15.3",
"webpack": "^5.67.0",
"webpack-cli": "^4.9.2"
}
}