updeep-remeda/package.json

75 lines
2.1 KiB
JSON

{
"name": "updeep",
"version": "1.2.0",
"description": "Easily update nested frozen objects and arrays in a declarative and immutable manner.",
"homepage": "https://github.com/substantial/updeep",
"repository": {
"type": "git",
"url": "https://github.com/substantial/updeep"
},
"author": "Aaron Jensen",
"files": [
"dist",
"types"
],
"main": "dist/index.js",
"keywords": [
"immutable",
"frozen",
"functional",
"declarative"
],
"scripts": {
"dtslint": "dtslint --localTs node_modules/typescript/lib types",
"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"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/substantial/updeep/issues"
},
"dependencies": {
"lodash": "^4.2.0"
},
"devDependencies": {
"@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",
"@types/chai": "^4.1.7",
"@types/lodash": "^4.14.119",
"@types/mocha": "^7.0.1",
"@types/node": "^13.9.8",
"babel-loader": "^8.0.6",
"benchmark": "^2.1.4",
"chai": "^4.2.0",
"dtslint": "^3.4.1",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.2",
"exports-loader": "^0.7.0",
"karma": "^4.3.0",
"karma-babel-preprocessor": "^8.0.1",
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^4.0.2",
"mocha": "^7.0.0",
"prettier": "^2.0.2",
"rimraf": "^3.0.0",
"typescript": "^3.6.3",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.1.11",
"webpack-stream": "^5.2.1"
},
"types": "types"
}