-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.21 KB
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
{
"name": "ring-buffer-logging",
"version": "1.0.0",
"description": "A ring buffer logger that captures context around errors",
"main": "index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:all": "jest test/AllImplementations.test.js",
"test:original": "jest test/RingBufferLogger.test.js",
"start": "node examples/demo.js",
"benchmark": "node benchmark/performance.js",
"benchmark:quick": "node benchmark/performance.js --quick",
"benchmark:compare": "node benchmark/three-way-comparison.js",
"benchmark:compare:quick": "node benchmark/three-way-comparison.js --quick",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"keywords": [
"logging",
"ring-buffer",
"circular-buffer",
"error-context",
"nodejs"
],
"author": "",
"license": "MIT",
"devDependencies": {
"jest": "^29.7.0",
"eslint": "^8.57.0"
},
"jest": {
"testEnvironment": "node",
"collectCoverageFrom": [
"index.js",
"index-*.js"
],
"coverageDirectory": "coverage",
"coverageReporters": [
"text",
"lcov",
"html"
]
},
"engines": {
"node": ">=16.0.0"
}
}