-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
116 lines (116 loc) · 2.86 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "semantic-release-yarn",
"version": "3.0.2",
"description": "semantic-release plugin to publish a npm package with yarn",
"keywords": [
"npm",
"publish",
"semantic-release",
"yarn",
"monorepo"
],
"homepage": "https://github.com/hongaar/semantic-release-yarn",
"bugs": "https://github.com/hongaar/semantic-release-yarn/issues",
"repository": "github:hongaar/semantic-release-yarn",
"license": "MIT",
"author": "Joram van den Boezem <[email protected]> (https://joram.dev)",
"contributors": [
"Pierre Vanduynslager (https://twitter.com/@pvdlg_)",
"Stephan Bönnemann <[email protected]> (http://boennemann.me)",
"Gregor Martynus (https://twitter.com/gr2m)"
],
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "yarn clean && yarn build:esm",
"build:esm": "tsc",
"clean": "rm -rf dist",
"doctoc": "doctoc README.md",
"format": "prettier --write --ignore-unknown .",
"format:check": "prettier --check --ignore-unknown .",
"prepublish": "yarn build",
"release": "semantic-release",
"test": "ava"
},
"lint-staged": {
"*": "prettier --write --ignore-unknown"
},
"nyc": {
"all": true,
"include": [
"lib/**/*.js",
"index.js"
],
"reporter": [
"json",
"text",
"html"
]
},
"dependencies": {
"@semantic-release/error": "^4.0.0",
"aggregate-error": "^5.0.0",
"cosmiconfig": "^9.0.0",
"execa": "^8.0.1",
"fs-extra": "^11.1.0",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"nerf-dart": "^1.0.0",
"read-pkg": "^9.0.1",
"semver": "^7.3.8"
},
"devDependencies": {
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@types/dockerode": "3.3.28",
"@types/env-ci": "3.1.4",
"@types/fs-extra": "11.0.4",
"@types/js-yaml": "4.0.9",
"@types/lodash": "4.17.15",
"@types/node": "22.13.4",
"@types/prettier": "3.0.0",
"@types/semantic-release": "20.0.6",
"@types/semver": "7.5.8",
"@types/sinon": "17.0.4",
"@types/stream-buffers": "3.0.7",
"ava": "6.2.0",
"dockerode": "4.0.4",
"doctoc": "2.2.1",
"get-stream": "7.0.1",
"got": "12.6.0",
"husky": "9.1.6",
"lint-staged": "15.4.3",
"moker": "4.3.0",
"p-retry": "6.2.1",
"prettier": "3.5.3",
"semantic-release": "24.2.2",
"sinon": "19.0.2",
"stream-buffers": "3.0.3",
"tempy": "3.1.0",
"ts-node": "10.9.2",
"typescript": "5.7.3"
},
"peerDependencies": {
"semantic-release": ">=19.0.0"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
},
"moker": {
"plugins": [
"typescript",
"github-actions",
"semantic-release",
"prettier",
"lint-staged",
"husky",
"dependabot",
"doctoc"
]
}
}