mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-10 19:56:54 +03:00
d4adb601da
* fix(deps): update all non-major dependencies * Downgrade jsondiffpatch --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Nathan Bierema <nbierema@gmail.com>
66 lines
1.9 KiB
JSON
Executable File
66 lines
1.9 KiB
JSON
Executable File
{
|
|
"name": "map2tree",
|
|
"version": "3.0.0",
|
|
"description": "Utility for mapping maps to trees",
|
|
"keywords": [
|
|
"map2tree",
|
|
"map-to-tree",
|
|
"mapToTree",
|
|
"map",
|
|
"tree"
|
|
],
|
|
"homepage": "https://github.com/reduxjs/redux-devtools/tree/master/packages/map2tree",
|
|
"bugs": {
|
|
"url": "https://github.com/reduxjs/redux-devtools/issues"
|
|
},
|
|
"license": "MIT",
|
|
"author": "romseguy",
|
|
"files": [
|
|
"lib",
|
|
"src"
|
|
],
|
|
"main": "lib/cjs/index.js",
|
|
"module": "lib/esm/index.js",
|
|
"types": "lib/types/index.d.ts",
|
|
"sideEffects": false,
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/reduxjs/redux-devtools.git"
|
|
},
|
|
"scripts": {
|
|
"build": "pnpm run build:cjs && pnpm run build:esm && pnpm run build:types",
|
|
"build:cjs": "babel src --extensions \".ts\" --out-dir lib/cjs",
|
|
"build:esm": "babel src --config-file ./babel.config.esm.json --extensions \".ts\" --out-dir lib/esm",
|
|
"build:types": "tsc --emitDeclarationOnly",
|
|
"clean": "rimraf lib",
|
|
"test": "jest",
|
|
"lint": "eslint . --ext .ts",
|
|
"type-check": "tsc --noEmit",
|
|
"prepack": "pnpm run clean && pnpm run build",
|
|
"prepublish": "pnpm run type-check && pnpm run lint && pnpm run test"
|
|
},
|
|
"dependencies": {
|
|
"@babel/runtime": "^7.23.6",
|
|
"lodash": "^4.17.21"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.23.4",
|
|
"@babel/core": "^7.23.6",
|
|
"@babel/eslint-parser": "^7.23.3",
|
|
"@babel/preset-env": "^7.23.6",
|
|
"@babel/preset-typescript": "^7.23.3",
|
|
"@types/jest": "^29.5.11",
|
|
"@types/lodash": "^4.14.202",
|
|
"@typescript-eslint/eslint-plugin": "^6.15.0",
|
|
"@typescript-eslint/parser": "^6.15.0",
|
|
"eslint": "^8.56.0",
|
|
"eslint-config-prettier": "^9.1.0",
|
|
"eslint-plugin-jest": "^27.6.0",
|
|
"immutable": "^4.3.4",
|
|
"jest": "^29.7.0",
|
|
"rimraf": "^5.0.5",
|
|
"ts-jest": "^29.1.1",
|
|
"typescript": "~5.2.2"
|
|
}
|
|
}
|