forked from octoblu/express-logentries-webhook-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 822 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 822 Bytes
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
{
"name": "logentries-webhook-auth",
"version": "1.1.1",
"description": "Express middleware for logentries webhook api",
"main": "build/index.js",
"scripts": {
"test": "npm run build && mocha",
"build": "tsc",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/KeeganJ/logentries-webhook-auth"
},
"keywords": [
"logentries",
"logentries-webhook",
"express"
],
"author": "Keegan Jorgensen <k@keeganj.com>",
"license": "MIT",
"devDependencies": {
"@types/express": "^5.0.0",
"@types/node": "^24.0.0",
"@types/underscore": "^1.13.0",
"chai": "^4.5.0",
"mocha": "^11.0.0",
"sinon": "^19.0.0",
"sinon-chai": "^3.7.0",
"typescript": "^5.8.0"
},
"dependencies": {
"underscore": "^1.13.0"
}
}