-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 826 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 826 Bytes
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
{
"name": "hitpay",
"version": "0.3.0",
"description": "Javascript wrapper for Hitpay API",
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"test": "vitest"
},
"type": "commonjs",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"author": "",
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"eslint": "^8.37.0",
"prettier": "^2.8.7",
"typescript": "^5.0.3",
"vitest": "^0.29.8"
},
"files": [
"lib/**/*"
],
"dependencies": {
"dotenv": "^16.0.3",
"node-fetch": "^3.3.1",
"zod": "^3.21.4"
},
"keywords": [
"nodejs",
"node",
"hitpay",
"hitpay js",
"hitpay api"
],
"bugs": {
"url": "https://github.com/kenny019/hitpay-js/issues"
},
"homepage": "https://github.com/kenny019/hitpay-js/"
}