mobx-react-devtools
Version:
Dev-tools for MobX and React
59 lines • 1.57 kB
JSON
{
"name": "mobx-react-devtools",
"version": "6.1.1",
"description": "Dev-tools for MobX and React",
"main": "index.js",
"typings": "index",
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/mobxjs/mobx-react-devtools.git"
},
"scripts": {
"prettier": "prettier --write --print-width 100 --tab-width 4 --no-semi \"**/*.js\" \"**/*.ts\"",
"build:dev": "cross-env NODE_ENV=development webpack",
"build:prod": "cross-env NODE_ENV=production webpack",
"prepublish": "npm run build:prod",
"precommit": "lint-staged"
},
"author": "Michel Weststrate",
"license": "MIT",
"bugs": {
"url": "https://github.com/mobxjs/mobx/issues"
},
"homepage": "https://mobxjs.github.io/mobx",
"peerDependencies": {
"mobx": "^4.3.1 || ^5.0.0",
"mobx-react": "^4.0.0 || ^5.0.0"
},
"devDependencies": {
"babel-core": "^6.5.1",
"babel-loader": "^7.1.4",
"babel-plugin-transform-class-properties": "^6.5.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.5.0",
"cross-env": "^5.1.4",
"file-loader": "^0.8.5",
"lint-staged": "^4.1.3",
"prettier": "^1.6.1",
"prop-types": "^15.5.10",
"url-loader": "^1.0.1",
"webpack": "^4.1.1",
"webpack-cli": "^2.0.12"
},
"keywords": [
"mobx",
"mobservable",
"react-component",
"react",
"reactjs",
"reactive",
"devtools"
],
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"prettier --write --print-width 100 --tab-width 4 --no-semi",
"git add"
]
}
}