mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-11 04:07:34 +03:00
21 lines
565 B
JSON
21 lines
565 B
JSON
{
|
|
"private": true,
|
|
"devDependencies": {
|
|
"lerna": "3.4.2"
|
|
},
|
|
"scripts": {
|
|
"lerna": "lerna",
|
|
"prepublishOnly": "lerna run prepublishOnly",
|
|
"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/*"
|
|
]
|
|
}
|