2020-08-05 15:42:25 +03:00
|
|
|
{
|
|
|
|
"name": "d3-state-visualizer",
|
2021-03-06 16:57:19 +03:00
|
|
|
"version": "1.4.0",
|
2020-08-05 15:42:25 +03:00
|
|
|
"description": "Visualize your app state with a range of reusable charts",
|
|
|
|
"keywords": [
|
|
|
|
"d3",
|
|
|
|
"state",
|
|
|
|
"store",
|
|
|
|
"tree",
|
|
|
|
"visualization"
|
|
|
|
],
|
2020-09-21 02:05:37 +03:00
|
|
|
"homepage": "https://github.com/reduxjs/redux-devtools/tree/master/packages/d3-state-visualizer",
|
2020-08-05 15:42:25 +03:00
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/reduxjs/redux-devtools/issues"
|
|
|
|
},
|
2020-09-21 02:05:37 +03:00
|
|
|
"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": {
|
2021-09-19 02:47:03 +03:00
|
|
|
"build": "yarn run build:types && yarn run build:js && yarn run build:umd && yarn run build:umd:min",
|
2020-09-21 02:05:37 +03:00
|
|
|
"build:types": "tsc --emitDeclarationOnly",
|
|
|
|
"build:js": "babel src --out-dir lib --extensions \".ts\" --source-maps inline",
|
2021-08-27 23:23:35 +03:00
|
|
|
"build:umd": "webpack --env production --progress --config webpack.config.umd.ts",
|
|
|
|
"build:umd:min": "webpack --env production --progress --config webpack.config.umd.ts",
|
2020-09-21 02:05:37 +03:00
|
|
|
"clean": "rimraf lib dist",
|
|
|
|
"lint": "eslint . --ext .ts",
|
|
|
|
"type-check": "tsc --noEmit",
|
2021-09-19 02:47:03 +03:00
|
|
|
"prepack": "yarn run clean && yarn run build",
|
|
|
|
"prepublish": "yarn run type-check && yarn run lint"
|
2020-08-05 15:42:25 +03:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2021-10-04 22:18:48 +03:00
|
|
|
"@types/d3": "^3.5.46",
|
2020-08-05 15:42:25 +03:00
|
|
|
"d3": "^3.5.17",
|
2021-03-06 16:57:19 +03:00
|
|
|
"d3tooltip": "^1.3.0",
|
2020-08-10 03:54:00 +03:00
|
|
|
"deepmerge": "^4.2.2",
|
2021-03-06 16:57:19 +03:00
|
|
|
"map2tree": "^1.5.0",
|
2020-08-09 04:18:45 +03:00
|
|
|
"ramda": "^0.27.1"
|
2020-09-21 02:05:37 +03:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2021-11-01 16:59:32 +03:00
|
|
|
"@babel/cli": "^7.16.0",
|
|
|
|
"@babel/core": "^7.16.0",
|
|
|
|
"@babel/preset-env": "^7.16.0",
|
|
|
|
"@babel/preset-typescript": "^7.16.0",
|
2021-10-26 04:48:05 +03:00
|
|
|
"@types/node": "^16.11.6",
|
2021-11-01 16:59:32 +03:00
|
|
|
"@types/ramda": "^0.27.46",
|
2021-09-19 02:47:03 +03:00
|
|
|
"@types/webpack": "^5.28.0",
|
2021-11-01 16:59:32 +03:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.2.0",
|
|
|
|
"@typescript-eslint/parser": "^5.2.0",
|
2021-10-21 07:26:47 +03:00
|
|
|
"babel-loader": "^8.2.3",
|
2021-09-19 02:47:03 +03:00
|
|
|
"eslint": "^7.32.0",
|
|
|
|
"eslint-config-prettier": "^8.3.0",
|
|
|
|
"rimraf": "^3.0.2",
|
2021-10-25 03:42:08 +03:00
|
|
|
"ts-node": "^10.4.0",
|
2021-10-21 07:26:47 +03:00
|
|
|
"typescript": "~4.4.4",
|
2021-11-01 16:59:32 +03:00
|
|
|
"webpack": "^5.61.0",
|
2021-10-21 07:26:47 +03:00
|
|
|
"webpack-cli": "^4.9.1"
|
2020-08-05 15:42:25 +03:00
|
|
|
}
|
|
|
|
}
|