-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.39 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
{
"name": "@xuchaoqian/abortable-promise",
"version": "1.11.2",
"description": "A TypeScript library for creating abortable promises with ease.",
"author": {
"name": "Chaoqian Xu",
"email": "[email protected]",
"url": "https://github.com/xuchaoqian/"
},
"license": "Apache-2.0",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:xuchaoqian/abortable-promise.git"
},
"homepage": "https://github.com/xuchaoqian/abortable-promise",
"keywords": [
"promise",
"promises",
"abort",
"abortSignal",
"abortController",
"abortable",
"aborting",
"aborted",
"onabort",
"cancel",
"canceled",
"canceling",
"cancelable",
"cancellable",
"cancellation",
"async",
"await",
"signal"
],
"scripts": {
"test": "jest",
"test-cov": "jest --collect-coverage",
"build": "rimraf lib && tsc",
"format": "biome format --write",
"lint": "biome lint"
},
"devDependencies": {
"@babel/core": "~7.25.2",
"@babel/preset-env": "~7.25.4",
"@babel/preset-typescript": "~7.24.7",
"@babel/runtime": "~7.25.6",
"@types/jest": "~29.5.12",
"@types/node": "~22.5.2",
"babel-jest": "~29.7.0",
"coveralls": "~3.1.1",
"jest": "~29.7.0",
"rimraf": "~6.0.1",
"typescript": "~5.5.4"
}
}