-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.12 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
{
"name": "rxjs-redux-react",
"version": "0.3.0",
"description": "redux style rxjs state management pattern for react apps",
"main": "./lib",
"scripts": {
"build": "babel src -d lib",
"build:watch": "npm run build -- --watch",
"test": "node --harmony --harmony_destructuring test.js",
"test:watch": "ls test.js lib/* | entr -c time -p npm run test",
"prepublish": "npm run build",
"postversion": "git push && git push --tags"
},
"author": "Oscar Duignan",
"license": "MIT",
"dependencies": {
"lodash.isplainobject": "^4.0.0",
"ramda": "^0.19.1",
"react": "^0.14.6",
"recompose": "^0.14.5",
"rx": "^4.0.7",
"rx-combine-latest-obj": "^1.0.2",
"rx-recompose": "^0.2.0"
},
"devDependencies": {
"babel-cli": "^6.4.5",
"babel-preset-es2015": "^6.3.13",
"invariant": "^2.2.0",
"jsdom": "^7.2.2",
"react-addons-test-utils": "^0.14.6",
"tape": "^4.4.0"
},
"repository": {
"type": "git",
"url": "https://github.com/oscarduignan/rxjs-redux-react.git"
},
"keywords": [
"rxjs",
"redux",
"react",
"recompose",
"rx-recompose"
]
}