-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
81 lines (81 loc) · 2.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
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
{
"name": "@fe6/http",
"version": "0.1.0",
"description": "Axios 二次封装,开箱机用",
"scripts": {
"start": "npm-run-all --parallel \"dev\" serve open",
"dev": "node scripts/dev.js",
"serve": "serve",
"open": "open http://localhost:3000/demo",
"lint": "pretty-quick",
"husky": "husky install",
"prepublishOnly": "pnpm build",
"build": "node scripts/build.js --release",
"release": "bumpp --commit --tag --push"
},
"author": "tianyi <[email protected]>",
"main": "index.js",
"module": "dist/http.esm-bundler.js",
"types": "dist/http.d.ts",
"unpkg": "dist/http.global.js",
"jsdelivr": "dist/http.global.js",
"bugs": {
"url": "https://github.com/fe6/http/issues"
},
"homepage": "https://github.com/fe6/http#readme",
"devDependencies": {
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@fe6/norm-git-cz-config": "^0.1.1",
"@fe6/norm-prettier": "^0.1.0",
"@microsoft/api-extractor": "^7.19.4",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-replace": "^4.0.0",
"@types/lodash": "^4.14.179",
"@types/node": "^17.0.21",
"brotli": "^1.3.2",
"bumpp": "^7.1.1",
"chalk": "^4.1.2",
"conventional-changelog-cli": "^2.2.2",
"cz-customizable": "^6.3.0",
"execa": "^5.1.1",
"fs-extra": "^10.0.1",
"husky": "^7.0.2",
"minimist": "^1.2.5",
"npm-run-all": "^4.1.5",
"open": "^8.4.0",
"prettier": "^2.5.1",
"pretty-quick": "^3.1.3",
"rollup": "^2.69.2",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.2",
"serve": "^13.0.2",
"typescript": "^4.6.2"
},
"files": [
"dist",
"index.js"
],
"publishConfig": {
"access": "public"
},
"packageManager": "[email protected]",
"license": "MIT",
"engines": {
"node": ">= 16"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
},
"cz-customizable": {
"config": "./node_modules/@fe6/norm-git-cz-config/customizable.js"
}
},
"dependencies": {
"@fe6/shared": "^0.11.0",
"axios": "^0.26.0",
"lodash": "^4.17.21"
}
}