-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.05 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
{
"name": "redux-simplux",
"version": "1.0.4",
"description": "redux-simplux is a simple state container with no indirection, no magic. It is built on [Redux](https://github.com/reactjs/redux) so you can reuse all the middlewares / all the tools you are used to.",
"main": "./lib/index.js",
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-3": "^6.22.0",
"redux": "^3.6.0",
"rimraf": "^2.5.4"
},
"peerDependencies": {
"redux": "^2.0.0 || ^3.0.0"
},
"scripts": {
"clean": "rimraf lib",
"build": "babel src --out-dir lib",
"prepublish": "npm run clean && npm run build"
},
"keywords": [
"react",
"reactjs",
"flux",
"redux"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jnoleau/simplux.git"
},
"author": "Julien Noleau (http://github.com/jnoleau)",
"license": "MIT",
"bugs": {
"url": "https://github.com/jnoleau/simplux/issues"
},
"homepage": "https://github.com/jnoleau/simplux#readme"
}