-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 863 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
{
"type": "commonjs",
"name": "@manchicken/promise-regulation",
"description": "This is a simple Node library to help you take a bit more control over your Promises.",
"version": "0.0.7",
"main": "index.js",
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/manchicken/promise-regulation.git"
},
"keywords": ["promise", "regulation", "concurrency", "fault", "tolerance"],
"author": "Mike Stemle <[email protected]>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/manchicken/promise-regulation/issues"
},
"homepage": "https://github.com/manchicken/promise-regulation#readme",
"devDependencies": {
"@types/jest": "^29.5.13",
"jest": "^29.7.0"
},
"jest": {
"verbose": true,
"collectCoverage": true,
"coverageProvider": "v8"
}
}