-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.23 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "dispatchjs",
"version": "0.0.1",
"description": "Mongo backed event queue with scheduling and event sequencing",
"main": "dist/index.js",
"scripts": {
"test": "mocha --compilers js:babel-register test/dispatch.spec.js",
"build": "babel src --out-dir dist",
"prepublish": "npm run build"
},
"keywords": [
"event",
"queue",
"event",
"emitter",
"message",
"bus",
"cron",
"scheduling"
],
"engines": {
"node": ">=6",
"npm": ">=3"
},
"babel": {
"presets": [
"es2015",
"stage-3"
]
},
"standard": {
"parser": "babel-eslint",
"globals": [
"expect",
"describe",
"it",
"sinon",
"nock"
]
},
"author": "cyberwombat",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-core": "^6.14.0",
"babel-eslint": "^6.1.2",
"babel-preset-es2015": "^6.14.0",
"babel-preset-stage-3": "^6.11.0",
"babel-register": "^6.14.0",
"mocha": "^3.0.2",
"mongo-primer": "^0.2.0"
},
"dependencies": {
"bluebird": "^3.4.6",
"joi": "^9.0.4",
"lodash": "^4.15.0",
"moment": "^2.14.1",
"winston": "^2.2.0"
},
"optionalDependencies": {
"mongodb": "^2.2.9"
}
}