-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.15 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
{
"name": "micro-toolkit-event-storage-mongo",
"version": "1.1.0",
"description": "A mongodb implementation of the event storage interface",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test istanbul cover node_modules/mocha/bin/_mocha",
"test-debug": "NODE_ENV=test mocha --watch",
"lint": "eslint ."
},
"keywords": [
"micro-toolkit",
"zeromq",
"pub-sub",
"microservices",
"event",
"storage"
],
"repository": {
"type": "git",
"url": "git+https://github.com/micro-toolkit/event-storage-mongo.git"
},
"author": "Pedro Januário <[email protected]> (http://shared-mind.tumblr.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/micro-toolkit/event-storage-mongo/issues"
},
"homepage": "https://github.com/micro-toolkit/event-storage-mongo#readme",
"dependencies": {
"bluebird": "^3.5.1",
"lodash": "^4.17.4",
"mongoose": "^4.13.4"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"eslint": "^4.11.0",
"eslint-plugin-node": "^5.2.1",
"istanbul": "^0.4.5",
"mocha": "^4.0.1",
"mocha-mongoose": "^1.2.0"
}
}