-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 936 Bytes
/
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": "@woubuc/deferred",
"description": "A Promise that can be resolved externally",
"version": "2.0.0",
"license": "MIT",
"type": "module",
"exports": "./dist/Deferred.js",
"types": "dist/Deferred.d.ts",
"author": "Wouter Buckens <[email protected]>",
"homepage": "https://github.com/woubuc/deferred/blob/master/README.md",
"repository": "github:woubuc/deferred",
"bugs": "https://github.com/woubuc/deferred/issues",
"scripts": {
"build": "tsc",
"prepublishOnly": "tsc",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^26.0.13",
"jest": "^26.4.2",
"ts-jest": "^26.3.0",
"typescript": "^4.0.2"
},
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"files": [
"dist/**/*"
],
"keywords": [
"promise",
"promises",
"deferred",
"defer",
"external",
"outside",
"reject",
"resolve",
"async",
"await"
]
}