2020-08-05 15:42:25 +03:00
|
|
|
{
|
|
|
|
"name": "d3-state-visualizer",
|
2020-09-07 19:44:15 +03:00
|
|
|
"version": "1.3.4",
|
2020-08-05 15:42:25 +03:00
|
|
|
"description": "Visualize your app state with a range of reusable charts",
|
|
|
|
"main": "lib/index.js",
|
|
|
|
"files": [
|
|
|
|
"dist",
|
|
|
|
"lib",
|
|
|
|
"src"
|
|
|
|
],
|
|
|
|
"scripts": {
|
|
|
|
"clean": "rimraf lib dist",
|
|
|
|
"build": "babel src --out-dir lib",
|
|
|
|
"build:umd": "webpack src/index.js -o dist/d3-state-visualizer.js --config webpack.config.development.js",
|
|
|
|
"build:umd:min": "webpack src/index.js -o dist/d3-state-visualizer.min.js --config webpack.config.production.js",
|
|
|
|
"prepare": "npm run build",
|
|
|
|
"prepublishOnly": "npm run clean && npm run build && npm run build:umd && npm run build:umd:min"
|
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/reduxjs/redux-devtools.git"
|
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"d3",
|
|
|
|
"state",
|
|
|
|
"store",
|
|
|
|
"tree",
|
|
|
|
"visualization"
|
|
|
|
],
|
|
|
|
"author": "romseguy",
|
|
|
|
"license": "MIT",
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/reduxjs/redux-devtools/issues"
|
|
|
|
},
|
|
|
|
"homepage": "https://github.com/reduxjs/redux-devtools",
|
|
|
|
"devDependencies": {
|
|
|
|
"@babel/cli": "^7.10.5",
|
2020-08-08 22:46:01 +03:00
|
|
|
"@babel/core": "^7.11.1",
|
2020-08-05 15:42:25 +03:00
|
|
|
"@babel/plugin-proposal-class-properties": "^7.10.4",
|
|
|
|
"@babel/plugin-proposal-export-default-from": "^7.10.4",
|
|
|
|
"@babel/preset-env": "^7.11.0",
|
|
|
|
"babel-loader": "^8.1.0",
|
2020-08-08 22:46:01 +03:00
|
|
|
"rimraf": "^3.0.2",
|
2020-08-05 15:42:25 +03:00
|
|
|
"webpack": "^4.44.1"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"d3": "^3.5.17",
|
2020-08-14 17:37:56 +03:00
|
|
|
"d3tooltip": "^1.2.3",
|
2020-08-10 03:54:00 +03:00
|
|
|
"deepmerge": "^4.2.2",
|
2020-08-14 17:37:56 +03:00
|
|
|
"map2tree": "^1.4.2",
|
2020-08-09 04:18:45 +03:00
|
|
|
"ramda": "^0.27.1"
|
2020-08-05 15:42:25 +03:00
|
|
|
}
|
|
|
|
}
|