updeep-remeda/package.json

71 lines
2.0 KiB
JSON
Raw Normal View History

2015-07-31 15:31:34 +00:00
{
"name": "updeep",
2021-08-10 15:08:33 +00:00
"version": "1.2.1",
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-07-31 15:31:34 +00:00
"keywords": [
"immutable",
"frozen",
"functional",
"declarative"
],
2020-04-02 14:18:34 +00:00
"source": "lib/index.js",
"main": "dist/index.js",
"module": "dist/index.module.js",
"types": "types",
2020-04-02 18:40:18 +00:00
"license": "MIT",
"bugs": {
"url": "https://github.com/substantial/updeep/issues"
},
2015-07-31 15:53:25 +00:00
"scripts": {
2020-04-03 15:27:36 +00:00
"benchmark": "NODE_ENV=production node --require \"@babel/register\" perf",
2020-04-02 14:18:34 +00:00
"build": "microbundle",
"dev": "microbundle watch",
"dtslint": "dtslint --localTs node_modules/typescript/lib types",
2020-04-02 18:29:44 +00:00
"eslint": "eslint --ext .js,.jsx,.ts,.tsx",
"lint": "yarn -s eslint . && yarn -s dtslint",
2020-04-02 17:06:00 +00:00
"test": "mocha --recursive --require \"@babel/register\" test"
2015-07-31 15:53:25 +00:00
},
"dependencies": {
2016-01-14 16:02:59 +00:00
"lodash": "^4.2.0"
},
2015-07-31 15:53:25 +00:00
"devDependencies": {
2021-08-10 14:39:24 +00:00
"@babel/core": "^7.15.0",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
2021-08-10 14:39:24 +00:00
"@babel/preset-env": "^7.15.0",
"@babel/preset-typescript": "^7.15.0",
"@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": "^9.0.0",
2021-08-10 14:39:24 +00:00
"@types/node": "^16.4.13",
"@typescript-eslint/eslint-plugin": "^4.29.1",
"@typescript-eslint/parser": "^4.29.1",
"benchmark": "^2.1.4",
"chai": "^4.2.0",
2020-04-03 15:27:36 +00:00
"chalk": "^4.0.0",
"dtslint": "^4.0.0",
2021-08-10 14:39:24 +00:00
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.2.0",
"eslint-plugin-expect-type": "^0.0.5",
2021-08-10 14:39:24 +00:00
"eslint-plugin-import": "^2.24.0",
2020-04-02 14:16:13 +00:00
"eslint-plugin-prettier": "^3.1.2",
"husky": "^7.0.0",
2021-08-10 14:39:24 +00:00
"lint-staged": "^11.1.2",
"microbundle": "^0.13.0",
"mocha": "^9.0.0",
2020-04-02 14:16:13 +00:00
"prettier": "^2.0.2",
"table": "^6.2.0",
2021-08-10 14:39:24 +00:00
"typescript": "^4.3.5"
2020-04-02 14:18:34 +00:00
}
2015-07-31 15:31:34 +00:00
}