-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
80 lines (80 loc) · 1.73 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
{
"name": "@release-it-plugins/lerna-changelog",
"version": "7.0.0",
"description": "release-it plugin for lerna-changelog ",
"keywords": [
"release",
"release-it",
"release-it-plugin",
"plugin",
"changelog",
"lerna"
],
"repository": "https://github.com/release-it-plugins/lerna-changelog",
"license": "MIT",
"author": "Robert Jackson <[email protected]>",
"type": "module",
"exports": {
".": {
"import": "./index.js",
"require": "./cjs-wrapper.cjs"
}
},
"main": "index.js",
"files": [
"index.js",
"cjs-wrapper.cjs"
],
"scripts": {
"lint:js": "eslint .",
"test": "npm-run-all lint:js test:vitest",
"test:vitest": "vitest run"
},
"dependencies": {
"execa": "^5.1.1",
"lerna-changelog": "^2.2.0",
"lodash": "^4.17.21",
"mdast-util-from-markdown": "^1.2.0",
"tmp": "^0.2.1",
"validate-peer-dependencies": "^2.0.0",
"which": "^2.0.2"
},
"devDependencies": {
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"release-it": "^17.0.0",
"sinon": "^14.0.0",
"vitest": "^0.33.0"
},
"peerDependencies": {
"release-it": "^14.0.0 || ^15.1.3 || ^16.0.0 || ^17.0.0"
},
"engines": {
"node": ">= 16"
},
"volta": {
"node": "18.20.3"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"release-it": {
"plugins": {
"./cjs-wrapper.cjs": {
"infile": "CHANGELOG.md",
"launchEditor": true
}
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true
}
}
}