mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-11 12:17:18 +03:00
c29a8d9391
- devui@1.0.0-8 - react-dock@0.4.0 - react-json-tree@0.15.0 - @redux-devtools/app@1.0.0-6 - @redux-devtools/chart-monitor@1.9.0 - @redux-devtools/cli@1.0.0-6 - @redux-devtools/dock-monitor@1.4.0 - @redux-devtools/inspector-monitor-test-tab@0.7.0 - @redux-devtools/inspector-monitor-trace-tab@0.2.0 - @redux-devtools/inspector-monitor@0.15.0 - @redux-devtools/log-monitor@2.3.0 - @redux-devtools/slider-monitor@2.0.0-7 - @redux-devtools/utils@1.0.0-6 - @redux-devtools/core@3.9.0 - react-json-tree-example@1.1.2 - slider-todomvc@0.1.1 - counter-redux@0.1.2 - todomvc@0.2.1
64 lines
2.2 KiB
JSON
64 lines
2.2 KiB
JSON
{
|
|
"name": "react-json-tree",
|
|
"version": "0.15.0",
|
|
"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",
|
|
"umd"
|
|
],
|
|
"main": "lib/index.js",
|
|
"types": "lib/index.d.ts",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/reduxjs/redux-devtools.git"
|
|
},
|
|
"scripts": {
|
|
"start": "cd examples && npm start",
|
|
"build": "npm run build:types && npm run build:js && npm run build:umd && npm run build:umd:min",
|
|
"build:types": "tsc --emitDeclarationOnly",
|
|
"build:js": "babel src --out-dir lib --extensions \".ts,.tsx\" --source-maps inline",
|
|
"build:umd": "rimraf ./umd && webpack --progress --config webpack.config.umd.ts",
|
|
"build:umd:min": "webpack --env.production --progress --config webpack.config.umd.ts",
|
|
"clean": "rimraf lib umd",
|
|
"test": "jest",
|
|
"lint": "eslint . --ext .ts,.tsx",
|
|
"lint:fix": "eslint . --ext .ts,.tsx --fix",
|
|
"type-check": "tsc --noEmit",
|
|
"type-check:watch": "npm run type-check -- --watch",
|
|
"preversion": "npm run type-check && npm run lint && npm run test",
|
|
"prepublishOnly": "npm run clean && npm run build"
|
|
},
|
|
"dependencies": {
|
|
"@types/prop-types": "^15.7.3",
|
|
"prop-types": "^15.7.2",
|
|
"react-base16-styling": "^0.8.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/react": "^16.9.46",
|
|
"@types/react-test-renderer": "^16.9.3",
|
|
"react": "^16.13.1",
|
|
"react-test-renderer": "^16.13.1"
|
|
},
|
|
"peerDependencies": {
|
|
"@types/react": "^16.3.0 || ^17.0.0",
|
|
"react": "^16.3.0 || ^17.0.0"
|
|
}
|
|
}
|