-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.9 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
{
"name": "abortcontroller-deadline",
"version": "2.0.2",
"description": "Create an AbortController which aborts after a set number of milliseconds pass (a deadline). Optionally connects to other AbortSignals.",
"keywords": [
"signal",
"abortsignal",
"abortcontroller",
"context",
"deadline",
"cancellation",
"timeout"
],
"author": "Kyle Johnson",
"license": "MIT",
"homepage": "https://github.com/kyle-johnson/abortcontroller-utils/tree/main/packages/deadline",
"repository": {
"type": "git",
"url": "https://github.com/kyle-johnson/abortcontroller-utils.git"
},
"exports": {
".": {
"import": "./dist-esm/index.mjs",
"require": "./dist/index.js",
"default": "./dist/index.js"
}
},
"types": "dist/index.d.ts",
"files": [
"dist",
"dist-esm"
],
"scripts": {
"type-check": "scripty",
"lint": "scripty",
"test": "scripty",
"test:web": "scripty",
"test:ci": "scripty",
"build:esm": "scripty",
"build:cjs": "scripty",
"build": "SCRIPTY_PARALLEL=true scripty",
"format": "scripty",
"format:check": "scripty"
},
"config": {
"scripty": {
"logLevel": "warn",
"path": "../../scripts"
}
},
"jest": {
"coverageDirectory": "coverage",
"testEnvironment": "node",
"preset": "ts-jest"
},
"dependencies": {
"abortcontroller-chain": "workspace:^2.0.2"
},
"devDependencies": {
"@tsconfig/node14": "1.0.3",
"@types/jest": "29.5.0",
"@types/node": "16.18.58",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"eslint": "8.32.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-jest": "27.2.1",
"eslint-plugin-unicorn": "45.0.2",
"jest": "29.5.0",
"jest-environment-jsdom": "29.5.0",
"prettier": "2.8.8",
"scripty": "2.1.1",
"ts-jest": "29.0.5",
"typescript": "5.2.2"
}
}