redux-devtools/packages/react-json-tree/package.json
Nathan Bierema fa1aa952a6
chore(*): upgrade dependencies (#574)
* ramda

* open

* react-icons

* semver

* uuid

* terser-webpack-plugin

* socketcluster-client

* yarn.lock

* More

* Revert "More"

This reverts commit 84f092b7e0.

* Fix

* snapshot
2020-08-08 21:18:45 -04:00

65 lines
2.0 KiB
JSON

{
"name": "react-json-tree",
"version": "0.12.0",
"description": "React JSON Viewer Component, Extracted from redux-devtools",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib",
"build": "babel src --out-dir lib",
"build:umd": "rimraf ./umd && webpack --progress --config webpack.config.umd.js",
"build:umd:min": "webpack --env.production --progress --config webpack.config.umd.js",
"test": "jest",
"prepare": "npm run build",
"prepublishOnly": "npm run test && npm run clean && npm run build && npm run build:umd && npm run build:umd:min",
"start": "cd examples && npm start"
},
"files": [
"lib",
"src",
"umd"
],
"repository": {
"type": "git",
"url": "https://github.com/reduxjs/redux-devtools.git"
},
"keywords": [
"react",
"json viewer"
],
"author": "Shu Uesugi <shu@chibicode.com> (http://github.com/chibicode)",
"contributors": [
"Alexander Kuznetsov <alexkuz@gmail.com> (http://kuzya.org/)",
"Dave Vedder <veddermatic@gmail.com> (http://www.eskimospy.com/)",
"Daniele Zannotti <dzannotti@me.com> (http://www.github.com/dzannotti)",
"Mihail Diordiev <zalmoxisus@gmail.com> (https://github.com/zalmoxisus)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/reduxjs/redux-devtools/issues"
},
"homepage": "https://github.com/reduxjs/redux-devtools",
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.1",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"babel-loader": "^8.1.0",
"jest": "^26.2.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-test-renderer": "^16.13.1",
"rimraf": "^3.0.2",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
},
"peerDependencies": {
"react": "^16.3.0",
"react-dom": "^16.3.0"
},
"dependencies": {
"prop-types": "^15.7.2",
"react-base16-styling": "^0.6.0"
}
}