-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.21 KB
/
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
45
46
47
48
49
50
51
52
{
"name": "lerna-circleci",
"version": "1.0.0",
"description": "Lets Lerna monorepos fully utilize CircleCI features like parallelism and splitting tasks by timings.",
"author": "Daniel Grefberg <[email protected]>",
"license": "ISC",
"packageManager": "[email protected]",
"engines": {
"node": ">=12"
},
"keywords": [
"circleci",
"ci",
"lerna",
"parallelism"
],
"bin": "./bin/cli.js",
"scripts": {
"cli": "node ./bin/cli.js",
"test": "jest"
},
"files": [
"bin",
"src",
"!**/__tests__/**",
"!**/*.test.*"
],
"dependencies": {
"@lerna/changed": "^4.0.0",
"@lerna/cli": "^4.0.0",
"@lerna/exec": "^4.0.0",
"@lerna/filter-options": "^4.0.0",
"@lerna/list": "^4.0.0",
"@lerna/listable": "^4.0.0",
"@lerna/run": "^4.0.0",
"chalk": "^4.0.0",
"lerna": "^4.0.0",
"yargs": "^17.0.0"
},
"devDependencies": {
"@changesets/cli": "^2.17.0",
"@types/jest": "27.0.2",
"eslint": "8.0.1",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.25.2",
"eslint-plugin-jest": "25.2.2",
"eslint-plugin-prettier": "4.0.0",
"jest": "27.2.5",
"prettier": "2.4.1",
"tmp-promise": "3.0.2"
}
}