-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.41 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
{
"name": "rxeventstore",
"version": "0.0.17",
"description": "Simple module for persisting and querying data using the EventStore pattern and RxJs",
"main": "index.js",
"scripts": {
"compile": "./node_modules/.bin/babel -d lib/ src/",
"test": "npm run compile && NODE_ENV=test ./node_modules/.bin/mocha --compilers js:babel-core/register",
"prepublish": "npm run compile"
},
"repository": {
"type": "git",
"url": "[email protected]:jbaudanza/rxeventstore.git"
},
"keywords": [
"rxjs",
"eventstore",
"redis",
"postgresql"
],
"author": "Jonathan Baudanza <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jbaudanza/rxeventstore/issues"
},
"homepage": "https://github.com/jbaudanza/rxeventstore/issues#readme",
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-core": "^6.9.0",
"babel-eslint": "^6.0.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-3": "^6.5.0",
"eslint": "^2.10.2",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.8.0",
"eslint-plugin-jsx-a11y": "^1.2.2",
"eslint-plugin-react": "^5.1.1",
"fakeredis": "^1.0.3",
"mocha": "^2.4.5"
},
"dependencies": {
"babel-polyfill": "^6.9.1",
"generic-pool": "^3.1.1",
"pg": "^6.1.0",
"pg-pool": "^1.5.0",
"redis": "^2.6.3",
"rxjs": "^5.0.0",
"rxnotifier": "^0.0.2",
"uuid": "^3.0.0"
}
}