redux-freeze
Version:
Redux middleware that prevents state from being mutated anywhere in the app
41 lines (40 loc) • 1.03 kB
JSON
{
"name": "redux-freeze",
"version": "0.1.7",
"description": "Redux middleware that prevents state from being mutated anywhere in the app",
"main": "lib/middleware.js",
"scripts": {
"prepublish": "rimraf lib && babel src --out-dir lib",
"test": "mocha --compilers js:babel/register 'test/*.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/buunguyen/redux-freeze.git"
},
"keywords": [
"react",
"redux",
"flux",
"middleware",
"redux-middleware",
"freeze",
"immutability"
],
"author": "Buu Nguyen <buunguyen@gmail.com> (https://github.com/buunguyen)",
"license": "MIT",
"bugs": {
"url": "https://github.com/buunguyen/redux-freeze/issues"
},
"homepage": "https://github.com/buunguyen/redux-freeze#readme",
"devDependencies": {
"@types/redux": "^3.6.0",
"babel": "^5.8.34",
"chai": "^3.4.1",
"mocha": "^2.3.4",
"rimraf": "^2.4.4",
"sinon": "^1.17.2"
},
"dependencies": {
"deep-freeze-strict": "1.1.1"
}
}