updeep-remeda/package.json

75 lines
2.1 KiB
JSON
Raw Normal View History

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": {
"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"
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
},
"dependencies": {
2016-01-14 16:02:59 +00:00
"lodash": "^4.2.0"
},
2015-07-31 15:53:25 +00:00
"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",
2019-01-19 00:48:40 +00:00
"@types/chai": "^4.1.7",
"@types/lodash": "^4.14.119",
"@types/mocha": "^7.0.1",
2020-04-02 14:16:13 +00:00
"@types/node": "^13.9.8",
"babel-loader": "^8.0.6",
"benchmark": "^2.1.4",
"chai": "^4.2.0",
2020-04-02 14:16:13 +00:00
"dtslint": "^3.4.1",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.3.0",
2020-04-02 14:16:13 +00:00
"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",
2020-04-02 14:16:13 +00:00
"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"
2019-01-19 00:48:40 +00:00
},
"types": "types"
2015-07-31 15:31:34 +00:00
}