-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 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
52
53
54
55
56
57
58
59
60
{
"name": "redux-blabber",
"version": "0.1.2",
"description": "Redux store enhancer for synchronizing states and actions across store instances",
"main": "index.js",
"authors": [
"Lukas Hedegaard <[email protected]> (https://github.com/LukasHedegaard)",
"Andreas Pehn Sloth <[email protected]> (https://github.com/pehnen)"
],
"keywords": [
"Redux",
"Action",
"Store",
"Sync",
"Synchronization",
"Middleware",
"Store Enhancer",
"Rx",
"RxJS",
"Observables",
"Observable",
"ES6",
"ES2015",
"Typescript"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/garblovians/redux-blabber.git"
},
"scripts": {
"build": "tsc --watch",
"test": "jest --verbose"
},
"dependencies": {
"lodash": "^4.17.4",
"yeast": "^0.1.2"
},
"devDependencies": {
"@reactivex/rxjs": "^5.4.3",
"@types/jest": "^21.1.1",
"@types/lodash": "^4.14.87",
"@types/node": "^8.0.32",
"@types/redux": "^3.6.0",
"@types/redux-mock-store": "^0.0.11",
"@types/rx": "^4.1.1",
"jest": "^21.2.1",
"redux-logger": "^3.0.6",
"redux-mock-store": "^1.3.0",
"redux-thunk": "^2.2.0",
"rxjs": "^5.5.3"
},
"bugs": {
"url": "https://github.com/garblovians/redux-blabber/issues"
},
"homepage": "https://github.com/garblovians/redux-blabber#readme",
"directories": {
"test": "test"
}
}