-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 975 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
{
"name": "callbaq",
"version": "2.1.0",
"description": "Convert nested callback hell into serial procedural coding style, which is more readable, writable, and maintainable. Lightweight, Zero Dependency.",
"main": "index.js",
"scripts": {
"test": "CALLBAQ_DEBUG=1 nyc tape ./t/**test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BlueT/callbaq.git"
},
"keywords": [
"callback",
"queue",
"callback queue",
"callback hell",
"procedural",
"async",
"promise",
"workflow"
],
"author": "BlueT - Matthew Lien - 練喆明 <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/BlueT/callbaq/issues"
},
"homepage": "https://github.com/BlueT/callbaq#readme",
"tonicExampleFilename": "./example.js",
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"eslint": "^9.16.0",
"nyc": "^17.1.0",
"prettier": "^3.0.0",
"tape": "^5.6.3"
}
}