-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 798 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 798 Bytes
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
{
"name": "node-easy-logger",
"version": "1.0.2",
"description": "A node.js module with a simple api to log debug/error information to the disk or a database (currently just mysql)",
"homepage": "http://www.google.com",
"author": "Adam Dry <adamdryit+github@gmail.com>",
"contributors": [
"Adam Dry <adamdryit+github@gmail.com>"
],
"repository": {
"type": "git",
"url": "https://github.com/adamdry/node-easy-logger.git"
},
"scripts": {
"start": "node index.js",
"test": "mocha"
},
"dependencies": {
"express": "^4.13.0"
},
"bugs": {
"url": "https://github.com/adamdry/node-easy-logger/issues"
},
"main": "./lib/easyLogger.js",
"devDependencies": {
"mocha": "^2.2.5"
},
"keywords": [
"logger"
],
"license": "GPL-3.0"
}