-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
54 lines (54 loc) · 1.18 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
53
54
{
"name": "lerna-parallelism",
"version": "0.4.0",
"description": "`lerna run` with CircleCI parallelism splitting support",
"repository": {
"type": "git",
"url": "[email protected]:ClarkSource/lerna-parallelism.git"
},
"license": "ISC",
"author": "Jan Buschtöns <[email protected]>",
"main": "index.js",
"bin": "./bin.js",
"scripts": {
"lint:js": "eslint .",
"test": "jest"
},
"dependencies": {
"dot-prop": "^6.0.1"
},
"devDependencies": {
"@clark/eslint-config-node": "^2.2.0",
"@types/node": "~17.0.21",
"@types/yargs": "^17.0.8",
"eslint": "^7.32.0",
"jest": "^27.5.1",
"lerna": "^4.0.0",
"release-it": "^14.12.5",
"release-it-lerna-changelog": "^4.0.1"
},
"peerDependencies": {
"lerna": "^3.22.1 || ^4.0.0"
},
"engines": {
"node": ">= 12.*"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"release-it": {
"plugins": {
"release-it-lerna-changelog": {
"infile": "CHANGELOG.md",
"launchEditor": true
}
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true,
"tokenRef": "GITHUB_AUTH"
}
}
}