This repository has been archived by the owner on Feb 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
87 lines (87 loc) · 1.69 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
{
"name": "cheesy-metal",
"version": "6.1.0",
"description": "Cheesy metal band name generator",
"type": "module",
"exports": "./index.js",
"main": "index.js",
"license": "MIT",
"repository": "Trott/cheesy-metal",
"bin": {
"cheesy-metal": "cli.js"
},
"author": {
"name": "Rich Trott",
"email": "[email protected]"
},
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"test": "tsc && ts-standard -p tsconfig.json && c8 --100 node test.js"
},
"files": [
"index.d.ts",
"index.js",
"cli.js"
],
"keywords": [
"cheese",
"cli-app",
"cli",
"bin",
"heavy-metal",
"metal",
"word",
"words",
"list",
"array",
"random",
"rand"
],
"dependencies": {
"cheese-name": "^2.0.1",
"metal-name": "2.3"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/git": "^10.0.1",
"@types/node": "^18.11.18",
"c8": "^7.12.0",
"semantic-release": "^20.1.0",
"ts-standard": "^12.0.2",
"typescript": "^4.9.5"
},
"ts-standard": {
"ignore": [
"**/*.js",
"**/*.d.ts"
]
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
{
"changelogFile": "changelog.md"
}
],
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": [
"changelog.md",
"package.json"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
}
}