-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 2.48 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@toebean/signals",
"version": "3.0.0",
"title": "signals",
"description": "A collection of wrappers and utility functions for working with AbortSignals.",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./types/index.d.mts",
"author": "Tobey Blaber (https://github.com/toebeann)",
"homepage": "https://toebeann.github.io/signals",
"repository": {
"type": "git",
"url": "https://github.com/toebeann/signals.git"
},
"bugs": {
"url": "https://github.com/toebeann/signals/issues"
},
"funding": [
"https://github.com/toebeann/signals?sponsor=1",
{
"type": "github",
"url": "https://github.com/sponsors/toebeann"
},
{
"type": "individual",
"url": "https://paypal.me/tobeyblaber"
}
],
"license": "MIT",
"type": "module",
"sideEffects": false,
"scripts": {
"test": "jest",
"posttest": "npm run format:check",
"format": "prettier -w . --ignore-path .gitignore",
"format:check": "prettier -c . --ignore-path .gitignore",
"build": "rollup -c",
"prebuild": "npm run format",
"docs": "typedoc",
"postdocs": "npm run docs:purge",
"docs:purge": "tpv purge -y --patch 3",
"postdocs:purge": "npm run docs:sync",
"docs:sync": "tpv sync -y --symlinks"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.0.1",
"@tsconfig/node16": "^1.0.3",
"@types/jest": "^29.2.0",
"@types/node": "^18.11.4",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"@yelo/rollup-node-external": "^1.0.1",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"jest": "^29.2.1",
"prettier": "^2.7.1",
"rollup": "^3.2.3",
"rollup-plugin-ts": "^3.0.2",
"ts-jest": "^29.0.3",
"typedoc": "^0.23.19",
"typedoc-plugin-versions": "^0.2.1",
"typedoc-plugin-versions-cli": "^0.1.8",
"typescript": "^4.8.4"
},
"files": [
"dist/**/*.?(c|m)js?(.map)",
"types/**/*.d.?(c|m)ts?(.map)"
],
"keywords": [
"AbortSignal",
"signal",
"abort",
"aggregate",
"timeout",
"AggregateSignal",
"aggregate-signal",
"aggregate signal",
"anySignal",
"any-signal",
"any signal",
"TimeoutSignal",
"timeout-signal",
"timeout signal",
"isSignal",
"is-signal",
"is signal",
"isAbortSignal",
"is-abort-signal",
"is abort signal"
],
"engines": {
"node": ">=16"
},
"os": [
"win32",
"linux",
"darwin"
]
}