-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.38 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
{
"name": "nestjs-conditional-exception-filter",
"version": "1.3.0",
"type": "commonjs",
"description": "A utility to support creating exception filters based on conditions on the exception.",
"main": "lib/index.js",
"scripts": {
"build": "tsc --project ./tsconfig.json",
"release:check": "semantic-release --dry-run",
"release": "semantic-release"
},
"files": [
"README.md",
"lib"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/micalevisk/nestjs-conditional-exception-filter.git"
},
"keywords": [
"nestjs"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"author": "Micael Levi L. C.",
"license": "MIT",
"bugs": {
"url": "https://github.com/micalevisk/nestjs-conditional-exception-filter/issues"
},
"homepage": "https://github.com/micalevisk/nestjs-conditional-exception-filter#readme",
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/npm",
[
"@semantic-release/git",
{
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
],
"branches": [
"main"
]
},
"devDependencies": {
"@semantic-release/git": "^10.0.1",
"@types/node": "^22.7.4",
"semantic-release": "^24.1.2",
"typescript": "^5.6.2"
}
}