forked from gajus/redux-immutable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.46 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": "redux-immutable",
"description": "redux-immutable is used to create an equivalent function of Redux combineReducers that works with Immutable.js state.",
"main": "./dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/gajus/redux-immutable"
},
"keywords": [
"immutable",
"redux"
],
"version": "3.0.10",
"author": {
"name": "Gajus Kuizinas",
"email": "[email protected]",
"url": "http://gajus.com"
},
"license": "BSD-3-Clause",
"peerDependencies": {
"immutable": "^3.8.1 || ^4.0.0-rc.1"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-flow-runtime": "0.0.6",
"babel-plugin-syntax-flow": "^6.18.0",
"babel-plugin-transform-flow-strip-types": "^6.21.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.18.0",
"benchmark": "^2.1.3",
"chai": "^3.5.0",
"eslint": "^3.13.1",
"eslint-config-canonical": "^6.0.0",
"flow-runtime": "0.0.6",
"husky": "^0.12.0",
"immutable": "^3.8.1 || ^4.0.0-rc.1",
"mocha": "^3.2.0",
"semantic-release": "^6.3.2"
},
"scripts": {
"lint": "eslint ./src ./tests",
"test": "mocha --compilers js:babel-register './tests/**/*.js'",
"build": "babel ./src --source-maps --out-dir ./dist",
"benchmark": "NODE_ENV=production node ./benchmarks/index.js",
"precommit": "npm run lint && npm run test"
}
}