[d24f17c] | 1 | {
|
---|
| 2 | "name": "redux-immutable",
|
---|
| 3 | "description": "redux-immutable is used to create an equivalent function of Redux combineReducers that works with Immutable.js state.",
|
---|
| 4 | "main": "./dist/index.js",
|
---|
| 5 | "repository": {
|
---|
| 6 | "type": "git",
|
---|
| 7 | "url": "https://github.com/gajus/redux-immutable"
|
---|
| 8 | },
|
---|
| 9 | "keywords": [
|
---|
| 10 | "immutable",
|
---|
| 11 | "redux"
|
---|
| 12 | ],
|
---|
| 13 | "version": "4.0.0",
|
---|
| 14 | "author": {
|
---|
| 15 | "name": "Gajus Kuizinas",
|
---|
| 16 | "email": "gajus@anuary.com",
|
---|
| 17 | "url": "http://gajus.com"
|
---|
| 18 | },
|
---|
| 19 | "license": "BSD-3-Clause",
|
---|
| 20 | "peerDependencies": {
|
---|
| 21 | "immutable": "^3.8.1 || ^4.0.0-rc.1"
|
---|
| 22 | },
|
---|
| 23 | "devDependencies": {
|
---|
| 24 | "babel-cli": "^6.18.0",
|
---|
| 25 | "babel-plugin-add-module-exports": "^0.2.1",
|
---|
| 26 | "babel-plugin-flow-runtime": "0.0.6",
|
---|
| 27 | "babel-plugin-syntax-flow": "^6.18.0",
|
---|
| 28 | "babel-plugin-transform-flow-strip-types": "^6.21.0",
|
---|
| 29 | "babel-preset-es2015": "^6.18.0",
|
---|
| 30 | "babel-preset-stage-0": "^6.16.0",
|
---|
| 31 | "babel-register": "^6.18.0",
|
---|
| 32 | "benchmark": "^2.1.3",
|
---|
| 33 | "chai": "^3.5.0",
|
---|
| 34 | "eslint": "^3.13.1",
|
---|
| 35 | "eslint-config-canonical": "^6.0.0",
|
---|
| 36 | "flow-runtime": "0.0.6",
|
---|
| 37 | "husky": "^0.12.0",
|
---|
| 38 | "immutable": "^3.8.1 || ^4.0.0-rc.1",
|
---|
| 39 | "mocha": "^3.2.0",
|
---|
| 40 | "semantic-release": "^6.3.2"
|
---|
| 41 | },
|
---|
| 42 | "scripts": {
|
---|
| 43 | "lint": "eslint ./src ./tests",
|
---|
| 44 | "test": "mocha --compilers js:babel-register './tests/**/*.js'",
|
---|
| 45 | "build": "babel ./src --source-maps --out-dir ./dist",
|
---|
| 46 | "benchmark": "NODE_ENV=production node ./benchmarks/index.js",
|
---|
| 47 | "precommit": "npm run lint && npm run test"
|
---|
| 48 | }
|
---|
| 49 | } |
---|