-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.72 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 3.72 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
95
96
97
98
{
"name": "webhook-debugger-logger",
"version": "3.0.5",
"type": "module",
"description": "Generate temporary webhook URLs and log all incoming requests with full details.",
"main": "src/main.js",
"bin": {
"webhook-debugger-logger": "src/main.js"
},
"repository": {
"type": "git",
"url": "https://github.com/ar27111994/webhook-debugger-logger.git"
},
"scripts": {
"start": "node src/main.js",
"test:jest": "node --experimental-vm-modules --max-old-space-size=8192 node_modules/jest/bin/jest.js --runInBand",
"test": "npm run test:jest -- --detectOpenHandles",
"test:stress": "node --experimental-vm-modules --max-old-space-size=8192 --expose-gc node_modules/jest/bin/jest.js --runInBand --config jest.config.mjs --detectOpenHandles tests/e2e/resilience.test.js tests/integration/concurrency.stress.integration.test.js",
"test:coverage": "npm run test:jest -- --coverage",
"test:coverage:new-scopes": "npm run test:jest -- --config jest.coverage.new-scopes.config.mjs --coverageDirectory coverage/new-scopes --silent",
"test:coverage:matrix": "npm run test:jest -- --config jest.coverage.matrix.config.mjs --coverageDirectory coverage/full --silent",
"coverage:check:new-scopes": "node scripts/check-coverage.mjs --summary coverage/new-scopes/coverage-summary.json --thresholds .github/coverage/new-scopes.thresholds.json --label new-scopes",
"coverage:check:matrix": "node scripts/check-coverage.mjs --summary coverage/full/coverage-summary.json --thresholds .github/coverage/source-matrix.thresholds.json --label source-matrix",
"coverage:gate": "npm run test:coverage:new-scopes && npm run coverage:check:new-scopes && npm run test:coverage:matrix && npm run coverage:check:matrix",
"lint": "eslint --no-error-on-unmatched-pattern .actor public src tests",
"lint:fix": "npm run lint -- --fix",
"typecheck": "tsc --noEmit",
"validate:input-schema": "apify validate-schema",
"validate:schemas": "npm run validate:input-schema && npm run validate:web-server-schema",
"validate:web-server-schema": "node scripts/validate-web-server-schema.mjs",
"format": "prettier --write .",
"format:check": "prettier --check .",
"sync:version": "node scripts/sync-version.js",
"prepare": "husky"
},
"dependencies": {
"@duckdb/node-api": "^1.4.3-r.3",
"ajv": "^8.17.1",
"apify": "^3.5.3",
"axios": "^1.15.0",
"bottleneck": "^2.19.5",
"compression": "^1.8.1",
"cors": "^2.8.5",
"dotenv": "^17.4.0",
"express": "^5.2.1",
"ipaddr.js": "^2.3.0",
"nanoid": "^5.1.6",
"pino": "^10.3.0",
"pino-http": "^11.0.0"
},
"keywords": [
"apify",
"webhook",
"debugger",
"logger",
"serverless",
"actor"
],
"author": "Apify",
"license": "ISC",
"bugs": {
"url": "https://github.com/ar27111994/webhook-debugger-logger/issues"
},
"homepage": "https://github.com/ar27111994/webhook-debugger-logger#readme",
"engines": {
"node": ">=20.19.0"
},
"overrides": {
"basic-ftp": "5.2.2"
},
"devDependencies": {
"@apify/actor-memory-expression": "^0.1.6",
"@apify/input_secrets": "^1.2.30",
"@eslint/js": "^10.0.1",
"@types/compression": "^1.8.1",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/jest": "^30.0.0",
"@types/node": "^25.0.6",
"@types/supertest": "^7.2.0",
"apify-cli": "^1.4.1",
"eslint": "^10.0.0",
"eslint-plugin-sonarjs": "^4.0.2",
"eventsource": "^4.1.0",
"globals": "^17.0.0",
"husky": "^9.1.7",
"jest": "^30.2.0",
"lint-staged": "^16.2.7",
"prettier": "^3.8.0",
"supertest": "^7.2.2",
"ts-api-utils": "^2.4.0",
"typescript": "^6.0.2"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}