-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
108 lines (108 loc) · 2.29 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
108
{
"name": "@lucrise/azul-ts",
"version": "0.0.1",
"type": "module",
"main": "index.js",
"types": "index.d.ts",
"exports": {
".": {
"import": "./index.js"
}
},
"scripts": {
"prepare": "husky install",
"test": "vitest run",
"build": "rm -rf dist && tsc && tsc-alias -p tsconfig.json && cp package.json dist/package.json",
"start": "npm run build && node dist/index.js"
},
"keywords": [
"azul",
"payment",
"sdk",
"visa",
"mastercard"
],
"author": "Lucrise",
"license": "ISC",
"description": "SDK for Azul",
"devDependencies": {
"@semantic-release/release-notes-generator": "^13.0.0",
"@types/express": "^4.17.21",
"@types/node": "^20.12.8",
"@types/node-fetch": "^2.6.11",
"@vitest/coverage-v8": "^1.6.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "3.2.5",
"semantic-release": "^23.0.8",
"tsc-alias": "^1.8.8",
"typescript": "^5.4.5",
"vitest": "^1.6.0"
},
"dependencies": {
"dotenv": "^16.4.5",
"express": "^4.19.2",
"undici": "^6.15.0",
"zod": "^3.23.5"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write"
],
"*.{html,css,less,ejs}": [
"prettier --write"
],
"*.{js,css,md}": "prettier --write"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/github",
[
"@semantic-release/npm",
{
"pkgRoot": "./dist"
}
],
[
"@semantic-release/commit-analyzer",
{
"preset": "angular",
"releaseRules": [
{
"type": "refactor",
"release": "patch"
}
],
"parserOpts": {
"noteKeywords": [
"BREAKING CHANGE",
"BREAKING CHANGES"
]
}
}
],
[
"@semantic-release/release-notes-generator",
{
"preset": "angular",
"parserOpts": {
"noteKeywords": [
"BREAKING CHANGE",
"BREAKING CHANGES",
"BREAKING"
]
},
"writerOpts": {
"commitsSort": [
"subject",
"scope"
]
}
}
]
]
}
}