-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 960 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
{
"name": "async-completer",
"version": "1.0.0",
"description": "Add possibility to complete a promise when we want.",
"main": "./lib/Completer.js",
"types": "./lib/Completer.d.ts",
"scripts": {
"test": "jest",
"example": "tsc -p ./example/ && node ./example/build/Example.js",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JulienTD/async-completer.git"
},
"keywords": [
"completer",
"promise-completer",
"future-completer",
"promise",
"future"
],
"author": "JulienTD",
"license": "MIT",
"bugs": {
"url": "https://github.com/JulienTD/async-completer/issues"
},
"homepage": "https://github.com/JulienTD/async-completer#readme",
"dependencies": {},
"devDependencies": {
"@types/jest": "^26.0.10",
"@types/node": "^14.14.27",
"jest": "^26.4.0",
"ts-jest": "^26.2.0",
"typescript": "^3.9.7"
},
"files": [
"lib/**/*"
]
}