forked from litixsoft/log4js-node-mongodb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.63 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
{
"name": "log4js-node-mongodb",
"description": "A log4js-node log appender to write logs into MongoDB.",
"version": "2.2.2",
"homepage": "https://github.com/litixsoft/log4js-node-mongodb",
"repository": {
"type": "git",
"url": "https://github.com/litixsoft/log4js-node-mongodb.git"
},
"bugs": {
"url": "https://github.com/litixsoft/log4js-node-mongodb/issues"
},
"author": "Litixsoft GmbH <info@litixsoft.de> (http://www.litixsoft.de)",
"maintainers": [
"Andreas Krummsdorf <a.krummsdorf@litixsoft.de>",
"Thomas Scheibe <th.scheibe@litixsoft.de>"
],
"contributors": [
"Max Nachlinger",
"Ilya Starostin",
"Adam Ball"
],
"keywords": [
"log4js",
"mongo",
"mongodb",
"logging",
"log"
],
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/litixsoft/log4js-node-mongodb/blob/master/LICENSE"
}
],
"main": "lib/index.js",
"scripts": {
"test": "grunt test",
"demo": "node ./test/demo.js"
},
"directories": {
"lib": "./lib"
},
"devDependencies": {
"grunt": "1.0.1",
"grunt-bg-shell": "^2.3.3",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-jshint": "^1.0.0",
"grunt-jasmine-node": "^0.3.1",
"grunt-open": "^0.2.3",
"istanbul": "^0.4.4",
"jasmine-node": "1.14.5",
"load-grunt-tasks": "^3.5.0"
},
"dependencies": {
"log4js": "^0.6.38",
"lx-helpers": "^0.5.1",
"mongodb": "^2.2.5"
}
}