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
|
{
"name": "cologne",
"description": "Logger + multiplexer for JSON based logs",
"author": {
"name": "Ben Beltran",
"email": "ben@nsovocal.com",
"url": "http://unlimited.pizza"
},
"repository": {
"type": "git",
"url": "https://github.com/rbdr/cologne.git"
},
"version": "1.1.0",
"dependencies": {
"microtime": "2.0.x"
},
"devDependencies": {
"tap": "5.1.x",
"jsdoc-augmented-template": "rbdr/jsdoc-augmented-template"
},
"engines": {
"node": ">= 4.0.0"
},
"scripts": {
"test": "node_modules/tap/bin/run.js test/*.js test/**/*.js test/**/**/*.js",
"document": "jsdoc -c ./config/jsdoc.json lib"
},
"main": "./lib/cologne.js"
}
|