-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 985 Bytes
/
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
{
"name": "abort-request",
"version": "1.0.12",
"description": "自动取消过期请求",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"release": "bumpp",
"npm:prepublish": "npm run build & npm publish --tag=prerelease",
"npm:publish": "npm run build & npm publish"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/yinjialu/abort-request.git"
},
"keywords": [
"request",
"signal"
],
"author": "yinjialu",
"license": "ISC",
"bugs": {
"url": "https://github.com/yinjialu/abort-request/issues"
},
"homepage": "https://github.com/yinjialu/abort-request#readme",
"devDependencies": {
"bumpp": "^9.3.0",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
}
}