SIGN IN SIGN UP
immerjs / immer UNCLAIMED

Create the next immutable state by mutating the current one

0 0 35 JavaScript
2017-12-29 13:44:37 +01:00
{
"name": "immer",
2018-12-11 22:27:47 -05:00
"version": "0.0.0-development",
2017-12-29 13:44:37 +01:00
"description": "Create your next immutable state by mutating the current one",
2018-01-16 18:37:58 +01:00
"main": "dist/immer.js",
"umd:main": "dist/immer.umd.js",
"module": "dist/immer.module.js",
"jsnext:main": "dist/immer.module.js",
"react-native": "dist/immer.module.js",
2018-01-19 20:11:02 +01:00
"types": "./dist/immer.d.ts",
2017-12-29 13:44:37 +01:00
"scripts": {
2018-03-22 08:58:05 +01:00
"watch": "jest --watch",
2018-01-01 15:12:42 +00:00
"test": "jest",
2018-07-25 13:08:37 +02:00
"test:perf": "NODE_ENV=production yarn-or-npm build && cd __performance_tests__ && babel-node add-data.js && babel-node todo.js && babel-node incremental.js",
"test:flow": "yarn-or-npm flow check __tests__/flow",
"test:dts": "tsc -p __tests__/tsconfig.json --noEmit",
2018-12-16 09:04:26 -05:00
"coveralls": "jest --coverage && cat ./coverage/lcov.info | ./node_modules/.bin/coveralls && rm -rf ./coverage",
2018-12-16 08:39:22 -05:00
"build": "rimraf dist/ && cross-env NODE_ENV=production rollup -c && cpx 'src/immer.{d.ts,js.flow}' dist -v"
2017-12-29 13:44:37 +01:00
},
"husky": {
"hooks": {
2018-12-12 00:15:22 -05:00
"pre-commit": "pretty-quick --staged"
}
},
2017-12-29 13:44:37 +01:00
"repository": {
"type": "git",
2018-12-11 22:27:47 -05:00
"url": "https://github.com/mweststrate/immer.git"
2017-12-29 13:44:37 +01:00
},
"keywords": [
"immutable",
"mutable",
"copy-on-write"
],
"author": "Michel Weststrate",
"license": "MIT",
"bugs": {
"url": "https://github.com/mweststrate/immer/issues"
},
"homepage": "https://github.com/mweststrate/immer#readme",
2017-12-29 16:40:55 +01:00
"files": [
2018-01-10 17:27:03 +01:00
"dist/"
2017-12-29 16:40:55 +01:00
],
2017-12-29 13:44:37 +01:00
"devDependencies": {
"@types/jest": "^22.2.3",
2018-01-10 17:27:03 +01:00
"babel-cli": "^6.26.0",
2017-12-29 13:44:37 +01:00
"babel-core": "^6.26.0",
"babel-jest": "^22.0.4",
"babel-plugin-external-helpers": "^6.22.0",
2017-12-29 13:44:37 +01:00
"babel-preset-env": "^1.6.1",
2018-01-10 17:27:03 +01:00
"babel-preset-es2015": "^6.24.1",
"babel-preset-modern-browsers": "^10.0.1",
2018-01-03 15:14:37 +00:00
"coveralls": "^3.0.0",
2018-02-13 16:30:57 +01:00
"cpx": "^1.5.0",
"cross-env": "^5.1.3",
2018-01-04 22:15:00 +01:00
"deep-freeze": "^0.0.1",
2018-03-23 23:11:08 -07:00
"flow-bin": "^0.68.0",
"husky": "^1.2.0",
"immutable": "^3.8.2",
2017-12-29 13:44:37 +01:00
"jest": "^22.0.4",
"lodash": "^4.17.4",
"lodash.clonedeep": "^4.5.0",
2018-01-01 15:12:42 +00:00
"prettier": "^1.9.2",
"pretty-quick": "^1.8.0",
2017-12-29 13:44:37 +01:00
"regenerator-runtime": "^0.11.1",
"rimraf": "^2.6.2",
"rollup": "^0.54.0",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-filesize": "^1.5.0",
"rollup-plugin-node-resolve": "^3.0.2",
"rollup-plugin-uglify": "^2.0.1",
2018-07-25 12:20:55 +02:00
"seamless-immutable": "^7.1.3",
"typescript": "3.1.1",
"uglify-es": "^3.3.6",
"yarn-or-npm": "^2.0.4"
2017-12-29 13:44:37 +01:00
},
"jest": {
"testURL": "http://localhost",
2017-12-29 13:44:37 +01:00
"transform": {
"\\.js$": "babel-jest"
}
2017-12-29 13:44:37 +01:00
}
2018-10-24 22:14:48 -04:00
}