forked from release-it-plugins/workspaces
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 1.76 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
{
"name": "release-it-yarn-workspaces",
"version": "2.0.1",
"description": "release-it plugin for bumping and publishing yarn workspaces",
"keywords": [
"release",
"release-it",
"release-it-plugin",
"plugin"
],
"repository": "https://github.com/rwjblue/release-it-yarn-workspaces",
"license": "MIT",
"author": "Robert Jackson <me@rwjblue.com>",
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"lint:js": "eslint .",
"test": "npm-run-all lint:js test:jest",
"test:jest": "jest"
},
"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"
},
"devDependencies": {
"broccoli-test-helper": "^2.0.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.2.3",
"jest": "^25.2.3",
"lint-staged": "^10.1.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.2",
"release-it": "^14.0.0",
"release-it-lerna-changelog": "^3.0.0",
"sinon": "^9.0.1",
"tmp": "^0.1.0"
},
"peerDependencies": {
"release-it": "^14.0.0"
},
"engines": {
"node": "10.* || 12.* || >= 14"
},
"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"
}
}
}