forked from BenWildeman/Jethro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.41 KB
/
package.json
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "jethro",
"description": "Modular logging utility",
"version": "4.4.0",
"author": "Samuel Mills <[email protected]>",
"bugs": {
"url": "https://github.com/JethroLogger/Jethro/issues"
},
"contributors": [
"Alex Pham <[email protected]>",
"Mathieu Samaey <[email protected]>",
"Nitro Ghost <[email protected]>"
],
"dependencies": {
"chalk": "^2.3.0",
"moment": "^2.20.1",
"strip-ansi": "^4.0.0",
"uuid": "^3.1.0"
},
"devDependencies": {
"codecov": "^3.0.0",
"express": "^4.16.2",
"jsdoc": "^3.5.5",
"lolex": "^2.3.1",
"mocha": "^4.1.0",
"mocha-eslint": "^4.1.0",
"nyc": "^11.3.0",
"object-assign": "^4.1.1",
"supertest": "^3.0.0",
"tempy": "^0.2.1",
"test-console": "^1.1.0",
"unexpected": "^10.36.2"
},
"engines": {
"node": ">= 4.0"
},
"keywords": [
"automatic",
"database",
"file",
"intelligent",
"jethro",
"logger",
"logging",
"logs",
"socket"
],
"files": [
"lib/",
"LGPLv3-license.txt",
"MIT-license.txt",
"yarn.lock"
],
"license": "LGPL-3.0 AND MIT",
"main": "./lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/JethroLogger/Jethro"
},
"scripts": {
"test": "nyc mocha",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"docs": "jsdoc -c ./jsdoc.json"
}
}