-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.31 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.31 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
{
"name": "paymongo-cli",
"version": "1.4.12",
"description": "Developer-first CLI tool for PayMongo integration development with local webhook forwarding, payment testing, and team collaboration features. See USER_GUIDE.md for comprehensive documentation.",
"type": "module",
"main": "dist/index.js",
"bin": {
"paymongo": "bin/paymongo.js"
},
"scripts": {
"build": "tsc",
"build:incremental": "tsc --incremental",
"dev": "tsc --watch",
"start": "node dist/index.js",
"test": "cross-env NODE_NO_WARNINGS=1 node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:watch": "cross-env NODE_NO_WARNINGS=1 node --experimental-vm-modules node_modules/jest/bin/jest.js --watch",
"lint": "cross-env NODE_OPTIONS='--max-old-space-size=4096' eslint src/**/*.ts tests/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"lint:src": "cross-env NODE_OPTIONS='--max-old-space-size=4096' eslint src/**/*.ts",
"lint:tests": "cross-env NODE_OPTIONS='--max-old-space-size=4096' eslint tests/**/*.ts",
"format": "prettier --write src/**/*.ts",
"benchmark": "npx tsx scripts/benchmark.ts",
"prepare": "npm run build"
},
"keywords": [
"paymongo",
"cli",
"payments",
"webhooks",
"development"
],
"author": "Leodyver Semilla",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/leodyversemilla07/paymongo-cli.git"
},
"bugs": {
"url": "https://github.com/leodyversemilla07/paymongo-cli/issues"
},
"homepage": "https://github.com/leodyversemilla07/paymongo-cli#readme",
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@inquirer/prompts": "^8.2.0",
"@ngrok/ngrok": "^1.7.0",
"chalk": "^5.3.0",
"cli-table3": "^0.6.5",
"commander": "^14.0.2",
"cosmiconfig": "^9.0.0",
"ora": "^9.1.0",
"undici": "^6.19.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@types/jest": "^30.0.0",
"@types/node": "^25.0.10",
"cross-env": "^10.1.0",
"eslint": "^9.0.0",
"globals": "^17.1.0",
"jest": "^30.2.0",
"jiti": "^2.6.1",
"prettier": "^3.1.1",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"typescript-eslint": "^8.0.0"
},
"publishConfig": {
"access": "public"
}
}