mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-11 12:17:18 +03:00
78ded9e0ca
* feature(react-dock): convert to TypeScript * And that * Fun * pretty * More fun * Try that
64 lines
2.1 KiB
JSON
64 lines
2.1 KiB
JSON
{
|
|
"name": "react-json-tree",
|
|
"version": "0.12.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",
|
|
"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.7.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.18",
|
|
"react": "^16.3.0"
|
|
}
|
|
}
|