-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
44 lines (44 loc) · 945 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
36
37
38
39
40
41
42
43
44
{
"name": "yarn-changed-workspaces",
"version": "2.0.10",
"main": "./src/index.js",
"bin": "./bin/cli.js",
"description": "An utility to show changed workspaces and their dependants",
"homepage": "https://github.com/igrek8/yarn-changed-workspaces#readme",
"bugs": {
"url": "https://github.com/igrek8/yarn-changed-workspaces/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/igrek8/yarn-changed-workspaces.git"
},
"keywords": [
"yarn",
"workspaces",
"monorepository",
"changes"
],
"license": "MIT",
"files": [
"src",
"bin"
],
"engines": {
"node": ">=11.0.0"
},
"engineStrict": true,
"devDependencies": {
"@types/jest": "^26.0.10",
"jest": "^26.4.1"
},
"dependencies": {
"chalk": "^4.1.0",
"glob": "^7.1.6",
"lodash": "^4.17.20",
"micromatch": "^4.0.2",
"yargs": "^15.4.1"
},
"scripts": {
"test": "jest"
}
}