mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-10 19:56:54 +03:00
b80cc9e5b9
* Merge react-json-tree from alexkuz/react-json-tree * Npm package config * Add credits * Stick `eslint-plugin-react` to `7.4.0` till change deprecated `componentWillReceiveProps`
23 lines
680 B
JSON
23 lines
680 B
JSON
{
|
|
"private": true,
|
|
"devDependencies": {
|
|
"babel-eslint": "^10.0.0",
|
|
"eslint-plugin-react": "7.4.0",
|
|
"lerna": "3.4.2"
|
|
},
|
|
"scripts": {
|
|
"lerna": "lerna",
|
|
"prepare": "lerna run prepare --since master --stream --sort -- --scripts-prepend-node-path",
|
|
"publish": "lerna publish",
|
|
"canary": "lerna publish --canary preminor --npm-tag alpha",
|
|
"next": "lerna publish --bump prerelease --npm-tag next",
|
|
"lint": "lerna run lint --since master -- --color",
|
|
"lint:all": "lerna run lint -- --color",
|
|
"test": "lerna run test --since master -- --colors",
|
|
"test:all": "lerna run test -- --colors"
|
|
},
|
|
"workspaces": [
|
|
"packages/*"
|
|
]
|
|
}
|