-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 812 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 812 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
36
{
"name": "seq-logging",
"version": "3.0.0",
"description": "Sends structured log events to the Seq HTTP ingestion API",
"keywords": [
"seq",
"logging"
],
"type": "module",
"main": "index.js",
"scripts": {
"test": "mocha",
"start": "node ./example/example.js",
"typecheck": "tsc --noEmit"
},
"engines": {
"node": ">=14.18"
},
"author": "Datalust and contributors",
"license": "Apache-2.0",
"homepage": "https://github.com/datalust/seq-logging",
"repository": {
"type": "git",
"url": "https://github.com/datalust/seq-logging.git"
},
"devDependencies": {
"mocha": "^11.2.2",
"typescript": "^5.8.3",
"uuid": "^11.1.0"
},
"dependencies": {
"abort-controller": "^3.0.0",
"node-fetch": "^2.7.0"
},
"types": "./index.d.ts"
}