forked from paperos-labs/x-hub.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.23 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
{
"name": "x-hub",
"version": "1.0.2",
"description": "X-Hub-Signature tools - lightweight, zero-dependency, WebCrypto",
"main": "x-hub-signature.js",
"files": [
"express.js",
"fetch.js",
"x-hub-signature.js"
],
"scripts": {
"bump": "npm version -m \"chore(release): bump to v%s\"",
"fmt": "npx -p prettier@3 -- prettier -w '**/*.{js,md}'",
"jshint": "npx -p jshint@2 -- jshint -c .jshintrc --reporter unix ./",
"lint": "npm run jshint && npm run tsc",
"test": "node ./test.js",
"tsc": "npx -p typescript@5 -- tsc -p ./jsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/therootcompany/x-hub.js.git"
},
"keywords": [
"x-hub-signature",
"x-hub-signature-256",
"webhook",
"auth",
"authentication",
"sign",
"verify",
"signer",
"signing",
"signature",
"github",
"facebook"
],
"author": "AJ ONeal <[email protected]> (https://therootcompany.com/)",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/therootcompany/x-hub.js/issues"
},
"homepage": "https://github.com/therootcompany/x-hub.js#readme",
"devDependencies": {
"@types/express": "^4.17.17",
"zora": "^5.2.0"
}
}