-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
49 lines (49 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
45
46
47
48
49
{
"name": "redurx",
"version": "0.4.1",
"description": "Redux'ish Functional State Management using RxJS",
"keywords": [
"redurx",
"redux",
"reducer",
"state",
"predictable",
"functional",
"observable",
"rx",
"rxjs",
"immutable",
"flux",
"frp",
"reactive"
],
"repository": {
"type": "git",
"url": "https://github.com/shiftyp/redurx.git"
},
"main": "dist/index.js",
"scripts": {
"clean": "rm -rf ./browser && rm -rf ./dist",
"build:dist": "babel lib -d dist",
"build:browser": "webpack",
"prepublish": "npm run clean && npm run build:dist && npm run build:browser",
"test": "npm run build:dist && ava"
},
"author": "Ryan Lynch <[email protected]> (https://github.com/shiftyp)",
"bugs": {
"url": "https://github.com/reactjs/redurx/issues"
},
"license": "ISC",
"dependencies": {
"babel-polyfill": "^6.9.1",
"babel-snabbdom-jsx": "0.3.0",
"rx": "^4.1.0"
},
"devDependencies": {
"ava": "0.15.2",
"babel-cli": "6.10.1",
"babel-loader": "6.2.4",
"babel-preset-es2015": "6.9.0",
"webpack": "1.13.1"
}
}