-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 1 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
{
"name": "verify-paddle-webhook",
"version": "1.1.0",
"license": "MIT",
"description": "Verify the signature of Paddle.com webhook payloads. Use this to confirm authenticity and secure your webhook handlers.",
"repository": {
"type": "git",
"url": "git+https://github.com/daveagill/verify-paddle-webhook.git"
},
"homepage": "https://github.com/daveagill/verify-paddle-webhook#readme",
"bugs": "https://github.com/daveagill/verify-paddle-webhook/issues",
"author": {
"name": "David Gill",
"url": "https://davegill.dev"
},
"keywords": [
"Paddle",
"Paddle.com",
"webhook",
"verify",
"verifier",
"validate",
"p_signature"
],
"engines": {
"node": ">=8.3.0"
},
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "jest"
},
"dependencies": {
"php-serialize": "^4.0.2"
},
"devDependencies": {
"jest": "^26.6.3"
}
}