forked from fireayehu/chapa-nodejs
-
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.37 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.37 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
{
"name": "chapa-nodejs",
"version": "2.1.1",
"description": "NodeJS SDK for Chapa payment gateway",
"license": "MIT",
"author": "Fireayehu Zekarias<fireayehuzekarias@gmail.com>",
"homepage": "https://github.com/fireayehu/chapa-nodejs#readme",
"repository": {
"type": "git",
"url": "https://github.com/fireayehu/chapa-nodejs"
},
"bugs": {
"url": "https://github.com/fireayehu/chapa-nodejs/issues"
},
"keywords": [
"nodejs",
"node",
"javascript",
"typescript",
"chapa",
"chapa-nodejs",
"payment",
"payment-gateway",
"ethiopia",
"sdk"
],
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src --ext .ts",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,js,jsx,json,md}\"",
"prepare": "husky",
"prepublishOnly": "npm run lint && npm test",
"changeset": "changeset",
"version": "changeset version",
"release": "pnpm run build && changeset publish",
"bump:patch": "bumpp patch",
"bump:minor": "bumpp minor",
"bump:major": "bumpp major"
},
"bumpp": {
"files": [
"package.json"
],
"commit": false,
"tag": false,
"push": false
},
"dependencies": {
"axios": "^1.7.7",
"crypto-js": "^4.2.0",
"nanoid": "^3.3.7",
"nanoid-dictionary": "^4.3.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-typescript": "^12.1.2",
"@types/crypto-js": "^4.2.2",
"@types/jest": "^30.0.0",
"@types/nanoid-dictionary": "^4.2.3",
"@types/node": "^25.2.3",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"eslint": "^9.18.0",
"husky": "^9.1.5",
"jest": "^29.7.0",
"bumpp": "^9.6.1",
"prettier": "^3.3.3",
"rollup": "^4.30.1",
"rollup-plugin-dts": "^6.1.1",
"ts-jest": "^29.2.5",
"tslib": "^2.7.0",
"typescript": "^5.6.2"
}
}