-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
37 lines (37 loc) · 988 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": "shortbus",
"version": "1.2.7",
"description": "Shortbus is a lightweight data processing/ETL module designed to run asynchronous processes in a seemingly synchronous way. The module acts as a mini service bus. The approach helps developers produce more readable data flow code. Code is cleaner, more structured, and provides a means to avoid callback hell.",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha test"
},
"repository": {
"type": "git",
"url": "https://github.com/coreybutler/shortbus.git"
},
"keywords": [
"data",
"flow",
"etl",
"async",
"sync",
"bus",
"event"
],
"author": "Corey Butler <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/coreybutler/shortbus/issues"
},
"engines": {
"node": ">=6.0.0"
},
"homepage": "https://github.com/coreybutler/shortbus",
"devDependencies": {
"mocha": "^5.2.0"
}
}