-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.73 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.73 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
{
"name": "hyp-api",
"version": "1.1.1",
"description": "Server-side wrapper for Hyp services (Yaad-Sarig), an Israeli payment solution.",
"type": "module",
"main": "./lib/index.js",
"module": "./lib/index.js",
"types": "./lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.js"
}
},
"sideEffects": false,
"files": [
"lib/**/*"
],
"scripts": {
"build": "tsc --project tsconfig.build.json",
"clean": "rm -rf ./lib/",
"lint": "eslint . --fix",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/YossiSaadi/hyp-pay.git"
},
"author": {
"name": "Yossi Saadi",
"email": "yossisaadi@gmail.com",
"url": "https://github.com/yossisaadi"
},
"engines": {
"node": ">=20.12.2"
},
"keywords": [
"payments",
"hyp",
"yaad-sarig",
"israel",
"api",
"server",
"edge"
],
"bugs": {
"url": "https://github.com/YossiSaadi/hyp-pay/issues"
},
"homepage": "https://github.com/YossiSaadi/hyp-pay#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"devDependencies": {
"@eslint/js": "^9.6.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.1",
"@types/node": "^20.12.7",
"@types/qs": "^6.14.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.6.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.10.0",
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"vitest": "^2.0.5"
},
"dependencies": {
"qs": "^6.14.0"
}
}