2015-07-31 15:31:34 +00:00
|
|
|
{
|
|
|
|
"name": "updeep",
|
2019-09-18 15:38:57 +00:00
|
|
|
"version": "1.2.0",
|
2015-08-02 07:32:32 +00:00
|
|
|
"description": "Easily update nested frozen objects and arrays in a declarative and immutable manner.",
|
2016-09-06 05:52:41 +00:00
|
|
|
"homepage": "https://github.com/substantial/updeep",
|
2015-07-31 15:31:34 +00:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2016-09-06 05:52:41 +00:00
|
|
|
"url": "https://github.com/substantial/updeep"
|
2015-07-31 15:31:34 +00:00
|
|
|
},
|
2015-07-31 15:53:25 +00:00
|
|
|
"author": "Aaron Jensen",
|
|
|
|
"files": [
|
2019-09-18 15:31:41 +00:00
|
|
|
"dist",
|
|
|
|
"types"
|
2015-07-31 15:53:25 +00:00
|
|
|
],
|
2015-08-01 16:09:34 +00:00
|
|
|
"main": "dist/index.js",
|
2015-07-31 15:31:34 +00:00
|
|
|
"keywords": [
|
|
|
|
"immutable",
|
|
|
|
"frozen",
|
|
|
|
"functional",
|
|
|
|
"declarative"
|
|
|
|
],
|
2015-07-31 15:53:25 +00:00
|
|
|
"scripts": {
|
2019-09-18 15:08:31 +00:00
|
|
|
"dtslint": "dtslint --localTs node_modules/typescript/lib types",
|
2020-04-02 14:15:02 +00:00
|
|
|
"lint": "npm run dtslint && eslint .",
|
|
|
|
"test": "npm run test:mocha && npm run test:karma",
|
|
|
|
"test:karma": "karma start karma.conf.js --single-run",
|
|
|
|
"test:mocha": "mocha --recursive --require \"@babel/register\" test"
|
2015-07-31 15:53:25 +00:00
|
|
|
},
|
2015-07-31 15:31:34 +00:00
|
|
|
"license": "MIT",
|
|
|
|
"bugs": {
|
2016-09-06 05:52:41 +00:00
|
|
|
"url": "https://github.com/substantial/updeep/issues"
|
2015-07-31 15:31:34 +00:00
|
|
|
},
|
2016-01-13 15:00:38 +00:00
|
|
|
"dependencies": {
|
2016-01-14 16:02:59 +00:00
|
|
|
"lodash": "^4.2.0"
|
2015-07-31 16:16:19 +00:00
|
|
|
},
|
2015-07-31 15:53:25 +00:00
|
|
|
"devDependencies": {
|
2020-04-02 13:05:58 +00:00
|
|
|
"@babel/core": "^7.7.0",
|
|
|
|
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
|
|
|
|
"@babel/plugin-transform-react-jsx": "^7.7.0",
|
|
|
|
"@babel/plugin-transform-react-jsx-source": "^7.7.4",
|
|
|
|
"@babel/preset-env": "^7.7.1",
|
|
|
|
"@babel/register": "^7.7.0",
|
2019-01-19 00:48:40 +00:00
|
|
|
"@types/chai": "^4.1.7",
|
|
|
|
"@types/lodash": "^4.14.119",
|
2020-01-30 14:24:37 +00:00
|
|
|
"@types/mocha": "^7.0.1",
|
2019-12-24 13:14:50 +00:00
|
|
|
"@types/node": "^13.1.0",
|
2020-04-02 13:05:58 +00:00
|
|
|
"babel-loader": "^8.0.6",
|
2019-02-11 21:20:15 +00:00
|
|
|
"benchmark": "^2.1.4",
|
2019-02-11 20:57:36 +00:00
|
|
|
"chai": "^4.2.0",
|
2019-11-08 13:14:41 +00:00
|
|
|
"dtslint": "^2.0.0",
|
2019-02-08 13:31:01 +00:00
|
|
|
"eslint": "^4.19.1",
|
2017-04-19 00:47:53 +00:00
|
|
|
"eslint-config-airbnb-base": "^11.1.3",
|
2019-09-18 15:40:01 +00:00
|
|
|
"eslint-config-prettier": "^6.3.0",
|
2017-04-19 00:47:53 +00:00
|
|
|
"eslint-plugin-import": "^2.2.0",
|
2017-04-19 00:55:46 +00:00
|
|
|
"eslint-plugin-prettier": "^2.0.1",
|
2019-02-11 13:31:12 +00:00
|
|
|
"exports-loader": "^0.7.0",
|
2019-09-18 16:03:24 +00:00
|
|
|
"karma": "^4.3.0",
|
2020-04-02 13:05:58 +00:00
|
|
|
"karma-babel-preprocessor": "^8.0.1",
|
2019-09-19 14:46:06 +00:00
|
|
|
"karma-chrome-launcher": "^3.1.0",
|
2019-02-08 13:21:53 +00:00
|
|
|
"karma-mocha": "^1.3.0",
|
2019-02-08 03:54:08 +00:00
|
|
|
"karma-mocha-reporter": "^2.2.5",
|
2020-04-02 14:15:02 +00:00
|
|
|
"karma-sourcemap-loader": "^0.3.7",
|
2020-04-02 13:05:58 +00:00
|
|
|
"karma-webpack": "^4.0.2",
|
2020-01-06 13:38:47 +00:00
|
|
|
"mocha": "^7.0.0",
|
2017-04-19 00:55:46 +00:00
|
|
|
"prettier": "^1.1.0",
|
2019-09-19 14:46:30 +00:00
|
|
|
"rimraf": "^3.0.0",
|
2019-09-18 15:08:31 +00:00
|
|
|
"typescript": "^3.6.3",
|
2020-04-02 13:05:58 +00:00
|
|
|
"webpack": "^4.42.1",
|
|
|
|
"webpack-cli": "^3.3.11",
|
2019-04-15 13:15:42 +00:00
|
|
|
"webpack-dev-server": "^3.1.11",
|
2020-04-02 13:05:58 +00:00
|
|
|
"webpack-stream": "^5.2.1"
|
2019-01-19 00:48:40 +00:00
|
|
|
},
|
|
|
|
"types": "types"
|
2015-07-31 15:31:34 +00:00
|
|
|
}
|