-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.43 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
50
51
{
"name": "logpp",
"description": "A next generation logging framework for JavaScript.",
"author": {
"name": "Mark Marron <marron@microsoft.com>"
},
"license": "MIT",
"version": "0.0.6",
"repository": {
"type": "git",
"url": "https://github.com/mrkmarron/logpp"
},
"bugs": {
"url": "https://github.com/mrkmarron/logpp/issues"
},
"homepage": "https://github.com/mrkmarron/logpp",
"dependencies": {
"bindings": "~1.3.0",
"node-addon-api": "1.1.0"
},
"devDependencies": {
"eslint": "4.18.1",
"eslint-plugin-markdown": "1.0.0-beta.6",
"chalk": "2.3.2",
"fastbench": "*",
"pino": "*",
"winston": "*",
"bunyan": "*",
"debug": "*"
},
"scripts": {
"install": "node-gyp rebuild",
"test": "node test/basic.js && node test/sync_flush.js && node test/msg_enable.js && node test/sublogger.js && node test/prefix.js && node test/bulk_load.js && node test/options.js",
"benchmark": "node benchmark/basicbench.js && node benchmark/interpolatebench.js && node benchmark/multibench.js && node benchmark/moremultibench.js"
},
"files": [
"src/*",
"nsrc/*",
"binding.gyp"
],
"main": "src/logger.js",
"engines": {
"node": ">=10.0"
},
"keywords": [
"log",
"logger",
"logging",
"debug"
]
}