This repository has been archived by the owner on Jul 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.58 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
{
"name": "redux-plugins-immutable",
"version": "1.2.2",
"description": "a powerful app plugin system for redux using immutable state",
"main": "lib/index.js",
"scripts": {
"lint": "eslint src test; exit 0",
"lint:fix": "eslint src test --fix; exit 0",
"build": "rm -rf lib; NODE_ENV=production babel src --out-dir lib",
"test": "rm -rf testlib; NODE_ENV=production babel src --out-dir testlib/src && NODE_ENV=production babel test --out-dir testlib/test && jasmine",
"prepublish": "eslint src test && npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jcoreio/redux-plugins-immutable.git"
},
"keywords": [
"redux",
"plugin",
"immutable",
"immutable.js",
"fop",
"feature-oriented programming"
],
"author": "Andy Edwards",
"license": "ISC",
"bugs": {
"url": "https://github.com/jcoreio/redux-plugins-immutable/issues"
},
"homepage": "https://github.com/jcoreio/redux-plugins-immutable#readme",
"devDependencies": {
"babel-cli": "^6.4.0",
"babel-core": "^6.4.0",
"babel-eslint": "^6.0.4",
"babel-plugin-transform-flow-strip-types": "^6.4.0",
"babel-polyfill": "^6.8.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-1": "^6.3.13",
"eslint": "^2.10.1",
"immutable": "^3.8.1",
"jasmine": "^2.4.1",
"redux": "^3.3.1"
},
"peerDependencies": {
"immutable": "^3.0.0",
"redux": "^3.0.0",
"bluebird": "^3.0.0",
"mindfront-redux-utils": "^1.0.1"
},
"dependencies": {
"reselect": "^2.2.1",
"warning": "^2.1.0"
}
}