redux-devtools/packages/d3-state-visualizer/package.json
renovate[bot] 8d917e2944
chore(deps): update all non-major dependencies (#987)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2022-01-03 05:10:29 +00:00

68 lines
2.0 KiB
JSON

{
"name": "d3-state-visualizer",
"version": "1.4.1",
"description": "Visualize your app state with a range of reusable charts",
"keywords": [
"d3",
"state",
"store",
"tree",
"visualization"
],
"homepage": "https://github.com/reduxjs/redux-devtools/tree/master/packages/d3-state-visualizer",
"bugs": {
"url": "https://github.com/reduxjs/redux-devtools/issues"
},
"license": "MIT",
"author": "romseguy",
"files": [
"dist",
"lib",
"src"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/reduxjs/redux-devtools.git"
},
"scripts": {
"build": "yarn run build:types && yarn run build:js && yarn run build:umd && yarn run build:umd:min",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir lib --extensions \".ts\" --source-maps inline",
"build:umd": "webpack --env production --progress --config webpack.config.umd.ts",
"build:umd:min": "webpack --env production --progress --config webpack.config.umd.ts",
"clean": "rimraf lib dist",
"lint": "eslint . --ext .ts",
"type-check": "tsc --noEmit",
"prepack": "yarn run clean && yarn run build",
"prepublish": "yarn run type-check && yarn run lint"
},
"dependencies": {
"@types/d3": "^3.5.46",
"d3": "^3.5.17",
"d3tooltip": "^1.3.1",
"deepmerge": "^4.2.2",
"map2tree": "^1.5.1",
"ramda": "^0.27.1"
},
"devDependencies": {
"@babel/cli": "^7.16.7",
"@babel/core": "^7.16.7",
"@babel/preset-env": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@types/node": "^16.11.17",
"@types/ramda": "^0.27.62",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"babel-loader": "^8.2.3",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"rimraf": "^3.0.2",
"ts-node": "^10.4.0",
"typescript": "~4.5.4",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1"
}
}