{ "name": "react-json-tree", "version": "0.11.1", "description": "React JSON Viewer Component, Extracted from redux-devtools", "main": "lib/index.js", "scripts": { "clean": "rimraf lib", "build": "babel src --out-dir lib", "lint": "eslint --max-warnings=0 src test examples/src", "test": "npm run lint && NODE_ENV=test mocha --compilers js:babel-core/register --recursive", "test:watch": "NODE_ENV=test mocha --compilers js:babel-core/register --recursive --watch", "test:cov": "babel-node ./node_modules/.bin/isparta cover ./node_modules/.bin/_mocha -- --recursive", "prepare": "npm run build", "prepublishOnly": "npm run test && npm run clean && npm run build", "start": "cd examples && npm start", "precommit": "lint-staged" }, "files": [ "lib", "src" ], "repository": { "type": "git", "url": "https://github.com/reduxjs/redux-devtools.git" }, "keywords": ["react", "json viewer"], "author": "Shu Uesugi (http://github.com/chibicode)", "contributors": [ "Alexander Kuznetsov (http://kuzya.org/)", "Dave Vedder (http://www.eskimospy.com/)", "Daniele Zannotti (http://www.github.com/dzannotti)" ], "license": "MIT", "bugs": { "url": "https://github.com/reduxjs/redux-devtools/issues" }, "homepage": "https://github.com/reduxjs/redux-devtools", "devDependencies": { "babel-cli": "^6.26.0", "babel-core": "^6.26.0", "babel-eslint": "^8.0.1", "babel-plugin-transform-class-properties": "^6.24.1", "babel-plugin-transform-es3-member-expression-literals": "^6.22.0", "babel-plugin-transform-es3-property-literals": "^6.22.0", "babel-plugin-transform-object-rest-spread": "^6.26.0", "babel-plugin-transform-runtime": "^6.23.0", "babel-preset-env": "^1.6.1", "babel-preset-react": "^6.5.0", "eslint": "^4.10", "eslint-config-prettier": "^2.6.0", "eslint-config-standard": "^10.2.1", "eslint-plugin-babel": "^4.1.2", "eslint-plugin-import": "^2.8.0", "eslint-plugin-node": "^5.2.1", "eslint-plugin-prettier": "^2.3.1", "eslint-plugin-promise": "^3.6.0", "eslint-plugin-react": "7.4.0", "eslint-plugin-standard": "^3.0.1", "expect": "^21.2.1", "husky": "^0.14.3", "isparta": "^4.0.0", "lint-staged": "^4.3.0", "mocha": "^4.0.1", "prettier": "^1.7.4", "react": "^16.0.0", "react-dom": "^16.0.0", "react-test-renderer": "^16.0.0", "rimraf": "^2.5.2" }, "peerDependencies": { "react": "^15.0.0 || ^16.0.0", "react-dom": "^15.0.0 || ^16.0.0" }, "dependencies": { "babel-runtime": "^6.6.1", "prop-types": "^15.5.8", "react-base16-styling": "^0.5.1" }, "lint-staged": { "*.{js,json,css}": ["prettier --single-quote --write", "git add"] } }