-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 952 Bytes
/
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
{
"name": "parlog",
"version": "0.1.2",
"description": "Log Parser for ExpressJS/Morgan Middleware",
"author": "Gregory Langlais",
"private": false,
"keywords": [
"parlog",
"log",
"parser",
"expressjs",
"express",
"morgan"
],
"main": "src/Parlog",
"repository": {
"type": "git",
"url": "https://github.com/gregl83/parlog.git"
},
"bugs": {
"url": "https://github.com/gregl83/parlog/issues"
},
"homepage": "https://github.com/gregl83/parlog",
"scripts": {
"install": "mkdir ./log",
"start": "./bin/parlog",
"test": "mocha --require test/support/env --reporter spec --bail --check-leaks test/"
},
"devDependencies": {
"mocha": "2.2.x",
"should": "5.2.x",
"mockery": "1.4.X",
"sinon": "1.14.x"
},
"dependencies": {
"commander": "2.7.x",
"config": "1.12.x",
"winston": "0.9.x",
"async": "0.9.x",
"csv": "0.4.x"
},
"license": "MIT"
}