-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.92 KB
/
package.json
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
{
"name": "@discue/paddle-webhook-validator",
"author": "Stefan Pfaffel",
"license": "MIT",
"version": "1.6.0",
"description": "Middleware for validation of Paddle Billing and Paddle Classic webhooks",
"main": "lib/classic/index",
"exports": {
".": "./lib/classic/index.js",
"./classic": "./lib/classic/index.js",
"./billing": "./lib/billing/index.js"
},
"files": [
"lib"
],
"scripts": {
"test": "mocha --recursive --check-leaks --timeout 50000",
"lint": "eslint -c .eslintrc.js lib",
"push-incl-tags": "git push --follow-tags origin main",
"publish-npm": "npm publish --access public",
"remove-types": "find lib -name \"*.d.ts\" -type f -delete",
"create-billing-types": "npx tsc lib/billing/index.js --declaration --emitDeclarationOnly --allowJs",
"create-classic-types": "npx tsc lib/classic/index.js --declaration --emitDeclarationOnly --allowJs",
"release-generic": "npm run push-incl-tags && npm run create-billing-types && npm run publish-npm && npm run remove-types",
"release": "standard-version && npm run release-generic",
"release-minor": "standard-version --release-as minor && npm run release-generic",
"paddle-webhook-tunnel": "lt --port 3456 --subdomain ii533vj7h9qipggbkbze"
},
"repository": {
"type": "git",
"url": "git+https://github.com/discue/paddle-webhook-validator.git"
},
"bugs": {
"url": "https://github.com/discue/paddle-webhook-validator/issues"
},
"homepage": "https://github.com/discue/paddle-webhook-validator#readme",
"keywords": [
"paddle",
"paddle billing",
"paddle classic",
"webhook",
"middleware",
"validator",
"express"
],
"devDependencies": {
"chai": "^4.3.10",
"eslint": "^9.17.0",
"express": "^4.21.2",
"mocha": "^11.0.1",
"nodemon": "^3.1.9",
"standard-version": "^9.5.0",
"typescript": "^5.7.2"
},
"dependencies": {
"php-serialize": "^5.0.1"
}
}