-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
46 lines (46 loc) · 1.08 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
{
"name": "abort-controller-x",
"version": "0.4.3",
"description": "Abortable async function helpers",
"keywords": [
"abort",
"abortable",
"cancel",
"cancelable",
"cancellable",
"abort-controller",
"async",
"coroutine"
],
"repository": "deeplay-io/abort-controller-x",
"sideEffects": false,
"main": "lib/index.js",
"module": "es/index.js",
"typings": "lib/index.d.ts",
"files": [
"src",
"lib",
"es"
],
"scripts": {
"clean": "rimraf lib es",
"test": "jest",
"build:lib": "tsc -P tsconfig.build.json",
"build:es": "tsc -P tsconfig.es.json",
"build": "npm run build:lib && npm run build:es",
"prepublishOnly": "npm test && npm run clean && npm run build"
},
"author": "Daniel Lytkin <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/defer-promise": "^1.0.0",
"@types/jest": "^28.1.6",
"@types/node": "^14.17.0",
"defer-promise": "^2.0.1",
"jest": "^28.1.3",
"prettier": "^2.1.2",
"rimraf": "^2.6.3",
"ts-jest": "^28.0.7",
"typescript": "^4.7.4"
}
}