forked from semantic-release/npm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 2.43 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
{
"name": "@semantic-release/npm",
"description": "semantic-release plugin to publish a npm package",
"version": "0.0.0-development",
"author": "Pierre Vanduynslager (https://twitter.com/@pvdlg_)",
"ava": {
"files": [
"test/**/*.test.js"
],
"timeout": "2m",
"workerThreads": false
},
"bugs": {
"url": "https://github.com/semantic-release/npm/issues"
},
"contributors": [
"Stephan Bönnemann <[email protected]> (http://boennemann.me)",
"Gregor Martynus (https://twitter.com/gr2m)"
],
"dependencies": {
"@semantic-release/error": "^3.0.0",
"aggregate-error": "^4.0.1",
"execa": "^7.0.0",
"fs-extra": "^11.0.0",
"lodash-es": "^4.17.21",
"nerf-dart": "^1.0.0",
"normalize-url": "^8.0.0",
"npm": "^9.5.0",
"rc": "^1.2.8",
"read-pkg": "^8.0.0",
"registry-auth-token": "^5.0.0",
"semver": "^7.1.2",
"tempy": "^3.0.0"
},
"devDependencies": {
"ava": "5.2.0",
"c8": "7.13.0",
"codecov": "3.8.3",
"delay": "5.0.0",
"dockerode": "3.3.5",
"get-stream": "6.0.1",
"got": "12.6.0",
"p-retry": "5.1.2",
"prettier": "2.8.7",
"semantic-release": "21.0.1",
"sinon": "15.0.3",
"stream-buffers": "3.0.2"
},
"engines": {
"node": ">=18"
},
"files": [
"lib",
"index.js"
],
"homepage": "https://github.com/semantic-release/npm#readme",
"keywords": [
"npm",
"publish",
"registry",
"semantic-release",
"version"
],
"license": "MIT",
"main": "index.js",
"c8": {
"include": [
"lib/**/*.js",
"index.js"
],
"reporter": [
"json",
"text",
"html"
],
"all": true
},
"peerDependencies": {
"semantic-release": ">=20.1.0"
},
"prettier": {
"printWidth": 120,
"trailingComma": "es5"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"repository": {
"type": "git",
"url": "https://github.com/semantic-release/npm.git"
},
"scripts": {
"codecov": "codecov -f coverage/coverage-final.json",
"lint": "prettier --check \"{lib,test}/**/*.{js,json,ts}\" \"*.{md,json,js}\" \".github/**/*.yml\"",
"lint:fix": "prettier --write \"{lib,test}/**/*.{js,json,ts}\" \"*.{md,json,js}\" \".github/**/*.yml\"",
"pretest": "npm run lint",
"test": "c8 ava -v",
"test:ci": "c8 ava -v"
},
"type": "module",
"renovate": {
"extends": [
"github>semantic-release/.github"
]
}
}