-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.8 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.8 KB
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
{
"name": "dist-plot-log",
"version": "1.0.3",
"description": "simple tool for plotting a distribution of data to the CLI",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/Afitzy98/dist-plot-log",
"author": "A.fitzy98 <a.fitzy98@gmail.com>",
"license": "MIT",
"keywords": [
"distribution",
"plot",
"logger",
"console"
],
"scripts": {
"build": "tsc",
"commit": "cz",
"prepublishOnly": "npm run build",
"release": "semantic-release",
"test": "jest"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@types/asciichart": "^1.5.8",
"@types/jest": "^29.5.14",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"jest": "^29.7.0",
"semantic-release": "^24.2.1",
"ts-jest": "^29.2.5",
"typescript": "^5.7.3"
},
"dependencies": {
"asciichart": "^1.5.25"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"release": {
"branches": [
"+([0-9])?(.{+([0-9]),x}).x",
"main",
"next",
"next-major",
{
"name": "beta",
"prerelease": "true"
},
{
"name": "alpha",
"prerelease": "true"
}
],
"plugins": [
"@semantic-release/npm",
"@semantic-release/github",
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/git",
{
"assets": "package.json",
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
],
"repositoryUrl": "https://github.com/Afitzy98/dist-plot-log.git"
}
}