-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 989 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"name": "@purple/lerna-smart-run",
"version": "0.5.1",
"description": "Lerna add-on for only running npm scripts for packages changed since previous branch-based tag",
"main": "src/index.js",
"scripts": {
"version": "",
"postversion": "git push && git push --tags && npm publish --access public",
"test": "jest --coverage --forceExit --runInBand --detectOpenHandles"
},
"bin": {
"smartRun": "./src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/purple-technology/lerna-smart-run.git"
},
"keywords": [
"lerna"
],
"author": "Alex Drozd <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/purple-technology/lerna-smart-run/issues"
},
"homepage": "https://github.com/purple-technology/lerna-smart-run#readme",
"dependencies": {
"lerna": "^3.22.1",
"multimatch": "^5.0.0",
"yargs": "^16.0.3"
},
"devDependencies": {
"jest": "^26.6.3"
}
}