-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
88 lines (88 loc) · 2 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@release-it-plugins/workspaces",
"version": "4.2.0",
"description": "release-it plugin for bumping and publishing workspaces",
"keywords": [
"release",
"release-it",
"release-it-plugin",
"plugin"
],
"repository": "https://github.com/release-it-plugins/workspaces",
"license": "MIT",
"author": "Robert Jackson <[email protected]>",
"type": "module",
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"lint:js": "eslint .",
"test": "npm-run-all lint:js test:vitest",
"test:watch": "vitest --no-threads",
"test:vitest": "vitest run --no-threads"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint"
},
"dependencies": {
"detect-indent": "^6.0.0",
"detect-newline": "^3.1.0",
"semver": "^7.1.3",
"url-join": "^4.0.1",
"validate-peer-dependencies": "^1.0.0",
"walk-sync": "^2.0.2",
"yaml": "^2.1.1"
},
"devDependencies": {
"@release-it-plugins/lerna-changelog": "^6.1.0",
"broccoli-test-helper": "^2.0.0",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^4.2.3",
"lint-staged": "^10.1.1",
"lodash": "^4.17.21",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.2",
"release-it": "^17.0.0",
"sinon": "^9.0.1",
"tmp": "^0.1.0",
"vitest": "^0.33.0"
},
"peerDependencies": {
"release-it": "^14.0.0 || ^15.2.0 || ^16.0.0 || ^17.0.0"
},
"engines": {
"node": ">= 16"
},
"volta": {
"node": "16.20.1",
"npm": "9.8.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"release-it": {
"plugins": {
"@release-it-plugins/lerna-changelog": {
"infile": "CHANGELOG.md",
"launchEditor": true
}
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true,
"tokenRef": "GITHUB_AUTH"
}
}
}