-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.41 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.41 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
{
"_comment": "Repository: https://github.com/mleem97/paywise-api | Package: https://www.npmjs.com/package/paywise-api | License: MIT",
"name": "paywise-api",
"version": "1.2.1",
"description": "TypeScript/JavaScript client library for Paywise API (Case Management & Partner APIs)",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"semantic-release": "semantic-release",
"prepare": "husky"
},
"keywords": [
"paywise",
"api",
"client",
"typescript",
"payment"
],
"author": "mleem97",
"maintainers": [
{
"name": "mleem97",
"email": "mleem97@users.noreply.github.com",
"url": "https://github.com/mleem97"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mleem97/paywise-api.git"
},
"bugs": {
"url": "https://github.com/mleem97/paywise-api/issues"
},
"homepage": "https://github.com/mleem97/paywise-api#readme",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"release": {
"branches": [
"main"
],
"tagFormat": "v${version}",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/exec",
{
"prepareCmd": "node scripts/update-changelog.js ${nextRelease.version} \"${nextRelease.notes}\""
}
],
"@semantic-release/npm",
"@semantic-release/github",
[
"@semantic-release/git",
{
"assets": [
"package.json",
"CHANGELOG.md"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.2",
"@semantic-release/npm": "^13.1.3",
"@types/jest": "^30.0.0",
"@typescript-eslint/eslint-plugin": "^8.52.0",
"@typescript-eslint/parser": "^8.52.0",
"eslint": "^9.39.2",
"husky": "^9.1.7",
"jest": "^30.2.0",
"semantic-release": "^25.0.2",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.52.0"
}
}