updeep-remeda/package.json

60 lines
1.5 KiB
JSON
Raw Normal View History

2015-07-31 15:31:34 +00:00
{
2023-01-03 18:51:35 +00:00
"type": "module",
2023-01-03 19:37:30 +00:00
"name": "updeep-remeda",
"version": "2.0.0",
2015-08-02 07:32:32 +00:00
"description": "Easily update nested frozen objects and arrays in a declarative and immutable manner.",
2023-01-03 19:37:30 +00:00
"homepage": "https://git.babyl.ca/yanick/updeep-remeda",
2015-07-31 15:31:34 +00:00
"repository": {
"type": "git",
2023-01-03 19:37:30 +00:00
"url": "https://git.babyl.ca/yanick/updeep-remeda"
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"
],
2023-01-03 18:51:35 +00:00
"source": "./src/index.ts",
"types": "./esm/index.d.ts",
"exports": {
".": {
"types": "./esm/index.d.ts",
"import": "./esm/index.js",
2023-01-03 19:31:53 +00:00
"require": "./commonjs/index.js"
2023-01-03 18:51:35 +00:00
}
},
2020-04-02 18:40:18 +00:00
"license": "MIT",
"bugs": {
2023-01-03 19:37:30 +00:00
"url": "https://git.babyl.ca/yanick/updeep-remeda/issues"
2020-04-02 18:40:18 +00:00
},
2015-07-31 15:53:25 +00:00
"scripts": {
"dtslint": "dtslint --localTs node_modules/typescript/lib types",
2020-04-02 18:29:44 +00:00
"eslint": "eslint --ext .js,.jsx,.ts,.tsx",
2023-01-03 19:37:30 +00:00
"lint": "yarn -s eslint . && yarn -s dtslint"
2015-07-31 15:53:25 +00:00
},
"dependencies": {
2023-01-03 19:37:30 +00:00
"remeda": "^1.3.0"
},
2015-07-31 15:53:25 +00:00
"devDependencies": {
2021-08-10 15:11:34 +00:00
"@types/node": "*",
"@typescript-eslint/eslint-plugin": "*",
"@typescript-eslint/parser": "*",
2023-01-03 18:51:35 +00:00
"@vitest/ui": "^0.26.3",
2021-08-10 15:11:34 +00:00
"benchmark": "*",
"dtslint": "*",
"eslint": "*",
"eslint-config-prettier": "*",
"eslint-plugin-expect-type": "*",
"eslint-plugin-import": "*",
"eslint-plugin-prettier": "*",
"prettier": "*",
2023-01-03 18:51:35 +00:00
"typescript": "^4.9.4",
"vitest": "^0.26.3"
2020-04-02 14:18:34 +00:00
}
2015-07-31 15:31:34 +00:00
}