-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 900 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
38
{
"name": "node-eventstore-postgre",
"version": "0.2.0",
"description": "nodejs event store using postgre as storage",
"main": "eventStore.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/ron-liu/node-eventstore-postgre.git"
},
"keywords": [
"node.js",
"eventstore",
"postgre"
],
"author": "Ron Liu <ronliu2k@gmail.com>",
"licenses": [
{
"type": "MIT",
"url": "http://github.com/chriso/validator.js/raw/master/LICENSE"
}
],
"bugs": {
"url": "https://github.com/ron-liu/node-eventstore-postgre/issues"
},
"homepage": "https://github.com/ron-liu/node-eventstore-postgre",
"dependencies": {
"pg": "^3.3.0",
"bluebird": "^2.1.3",
"uuid": "^1.4.1"
},
"devDependencies": {
"chai": "^1.9.1",
"lodash": "~2.4.1"
}
}