-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.74 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
59
60
61
62
63
64
65
66
67
68
{
"name": "verify-github-webhook-secret",
"version": "3.0.2",
"description": "Verifies the secret that is sent in GitHub Webhooks",
"type": "module",
"engines": {
"node": ">= 18"
},
"exports": {
"types": "./target/src/index.d.ts",
"default": "./target/src/index.js"
},
"author": "Christian Rackerseder <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/screendriver/verify-github-webhook-secret.git"
},
"bugs": {
"url": "https://github.com/screendriver/verify-github-webhook-secret/issues"
},
"homepage": "https://github.com/screendriver/verify-github-webhook-secret#readme",
"keywords": [
"secret",
"github",
"webhook"
],
"files": [
"target/src/**/*.js",
"target/src/**/*.js.map",
"target/src/**/*.d.ts"
],
"scripts": {
"clean": "rm -rf target",
"compile": "tsc --build",
"lint": "eslint . --ext '.ts'",
"pretest:unit": "npm run compile",
"test:unit": "ava",
"test:unit:coverage": "c8 npm run test:unit",
"pretest:integration": "npm run compile",
"test:integration": "ava --config ava.config.integration.mjs",
"release:dry": "release-it --dry-run --no-npm",
"release": "release-it"
},
"dependencies": {
"micro": "10.0.1",
"tslib": "2.8.1"
},
"devDependencies": {
"@ava/typescript": "5.0.0",
"@types/test-listen": "1.1.2",
"@typescript-eslint/eslint-plugin": "8.23.0",
"@typescript-eslint/parser": "8.23.0",
"auto-changelog": "2.5.0",
"ava": "6.2.0",
"c8": "10.1.3",
"esbuild": "0.24.2",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-ava": "14.0.0",
"eslint-plugin-prettier": "5.2.3",
"got": "14.4.5",
"prettier": "3.4.2",
"release-it": "17.11.0",
"test-listen": "1.1.0",
"typescript": "5.7.3"
}
}