mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-11 12:17:18 +03:00
7c2cfa98e2
Co-authored-by: Renovate Bot <bot@renovateapp.com>
90 lines
3.0 KiB
JSON
90 lines
3.0 KiB
JSON
{
|
|
"name": "react-json-tree",
|
|
"version": "0.16.1",
|
|
"description": "React JSON Viewer Component, Extracted from redux-devtools",
|
|
"keywords": [
|
|
"react",
|
|
"json viewer"
|
|
],
|
|
"homepage": "https://github.com/reduxjs/redux-devtools/tree/master/packages/react-json-tree",
|
|
"bugs": {
|
|
"url": "https://github.com/reduxjs/redux-devtools/issues"
|
|
},
|
|
"license": "MIT",
|
|
"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)"
|
|
],
|
|
"files": [
|
|
"lib",
|
|
"src"
|
|
],
|
|
"main": "lib/cjs/index.js",
|
|
"module": "lib/esm/index.js",
|
|
"types": "lib/types/index.d.ts",
|
|
"unpkg": "lib/umd/react-json-tree.umd.js",
|
|
"sideEffects": false,
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/reduxjs/redux-devtools.git"
|
|
},
|
|
"scripts": {
|
|
"build": "yarn build:cjs && yarn build:esm && yarn build:types && yarn build:umd",
|
|
"build:cjs": "babel src --extensions \".ts,.tsx\" --out-dir lib/cjs",
|
|
"build:esm": "babel src --config-file ./babel.config.esm.json --extensions \".ts,.tsx\" --out-dir lib/esm",
|
|
"build:types": "tsc --emitDeclarationOnly",
|
|
"build:umd": "rollup -c",
|
|
"clean": "rimraf lib",
|
|
"test": "jest",
|
|
"lint": "eslint . --ext .ts,.tsx",
|
|
"type-check": "tsc --noEmit",
|
|
"prepack": "yarn run clean && yarn run build",
|
|
"prepublish": "yarn run type-check && yarn run lint && yarn run test"
|
|
},
|
|
"dependencies": {
|
|
"@babel/runtime": "^7.17.0",
|
|
"@types/prop-types": "^15.7.4",
|
|
"prop-types": "^15.8.1",
|
|
"react-base16-styling": "^0.9.1"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.17.0",
|
|
"@babel/core": "^7.17.0",
|
|
"@babel/eslint-parser": "^7.17.0",
|
|
"@babel/plugin-transform-runtime": "^7.17.0",
|
|
"@babel/preset-env": "^7.16.11",
|
|
"@babel/preset-react": "^7.16.7",
|
|
"@babel/preset-typescript": "^7.16.7",
|
|
"@rollup/plugin-babel": "^5.3.0",
|
|
"@rollup/plugin-commonjs": "^21.0.1",
|
|
"@rollup/plugin-node-resolve": "^13.1.3",
|
|
"@types/jest": "^27.4.0",
|
|
"@types/react": "^17.0.39",
|
|
"@types/react-test-renderer": "^17.0.1",
|
|
"@typescript-eslint/eslint-plugin": "^5.10.2",
|
|
"@typescript-eslint/parser": "^5.10.2",
|
|
"eslint": "^8.8.0",
|
|
"eslint-config-prettier": "^8.3.0",
|
|
"eslint-plugin-jest": "^26.0.0",
|
|
"eslint-plugin-react": "^7.28.0",
|
|
"eslint-plugin-react-hooks": "^4.3.0",
|
|
"jest": "^27.5.0",
|
|
"react": "^17.0.2",
|
|
"react-test-renderer": "^17.0.2",
|
|
"rimraf": "^3.0.2",
|
|
"rollup": "^2.67.0",
|
|
"rollup-plugin-terser": "^7.0.2",
|
|
"rollup-plugin-typescript2": "^0.31.2",
|
|
"ts-jest": "^27.1.3",
|
|
"tslib": "^2.3.1",
|
|
"typescript": "~4.5.5"
|
|
},
|
|
"peerDependencies": {
|
|
"@types/react": "^16.3.0 || ^17.0.0",
|
|
"react": "^16.3.0 || ^17.0.0"
|
|
}
|
|
}
|