-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 2.25 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 2.25 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
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
{
"name": "ulid-uuid-converter",
"version": "0.0.0-development",
"private": false,
"description": "A tiny zero dependency library for ULID to UUID conversion and vice versa",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist/**",
"package.json"
],
"scripts": {
"prepare": "is-ci || husky install",
"test": "jest",
"lint": "tsc && eslint --ext ts --fix .",
"build": "tsup ./src/index.ts --format cjs,esm --dts",
"semantic-release": "semantic-release --branches main"
},
"keywords": [
"ULID",
"UUID",
"conversion",
"convert"
],
"author": "Edoardo Ranghieri",
"license": "MIT",
"devDependencies": {
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"cz-conventional-changelog": "^3.3.0",
"@types/jest": "^29.4.0",
"@types/node": "^18.14.0",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"jest": "^29.4.3",
"prettier": "^2.8.4",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"tsup": "^6.6.3",
"typescript": "^4.9.5",
"ulidx": "^0.5.0",
"semantic-release": "^20.1.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "https://github.com/TheEdoRan/ulid-uuid-converter.git"
},
"release": {
"branches": [
"main"
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "angular",
"releaseRules": [
{
"breaking": true,
"release": "major"
},
{
"revert": true,
"release": "patch"
},
{
"type": "feat",
"release": "minor"
},
{
"type": "fix",
"release": "patch"
},
{
"type": "perf",
"release": "patch"
},
{
"type": "docs",
"scope": "readme",
"release": "patch"
},
{
"type": "refactor",
"release": "patch"
},
{
"scope": "no-release",
"release": false
}
]
}
],
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github"
]
}
}