-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1 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
{
"name": "deferium",
"version": "0.3.0",
"description": "A framework for working with higher level async types.",
"repository": {
"type": "git",
"url": "https://github.com/elemental-mind/deferium.git"
},
"homepage": "https://github.com/elemental-mind/deferium#readme",
"scripts": {
"dry-update": "tsc",
"patch": "tsc && npm version patch && git push && npm publish",
"release": "tsc && npm version minor && git push && npm publish",
"test": "unitium-tsx source"
},
"keywords": [
"promise",
"promises",
"promise extension",
"inheritance",
"deferred execution",
"timeout",
"throttling",
"progress",
"signal",
"beacon",
"semaphore",
"thenable"
],
"author": "Magnus Meseck",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.10.4",
"unitium": "^0.3.3"
},
"dependencies": {
"fusium-js": "^0.3.1"
},
"type": "module",
"exports": "./distribution/deferium.js",
"types": "./distribution/deferium.d.ts"
}