-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.09 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
{
"name": "tpay-webhook-auth",
"version": "1.0.0",
"keywords": [
"tpay",
"webhook",
"auth",
"authentication",
"jws"
],
"description": "Tpay JWS signature verification tool to ensure notification comes from tpay.com notification service",
"author": "https://github.com/przpl",
"license": "MIT",
"homepage": "https://github.com/przpl/tpay-webhook-auth",
"repository": {
"type": "git",
"url": "git+https://github.com/przpl/tpay-webhook-auth.git"
},
"bugs": {
"url": "https://github.com/przpl/tpay-webhook-auth/issues"
},
"main": "dist/index.js",
"scripts": {
"build": "rimraf -rf dist && tsc",
"npm:publish": "npm run build && npm publish --public",
"test": "jest"
},
"devDependencies": {
"@swc/core": "^1.4.2",
"@swc/jest": "^0.2.36",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.19",
"jest": "^29.7.0",
"rimraf": "5.0.5",
"typescript": "5.3.3"
},
"engines": {
"node": ">=18.0.0"
}
}