forked from bahamas10/node-access-log
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 682 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 682 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
{
"name": "access-log",
"description": "Add simple access logs to any http or https server",
"version": "0.3.9",
"author": "Dave Eddy <dave@daveeddy.com> (http://www.daveeddy.com)",
"contributors": [],
"repository": {
"type": "git",
"url": "git://github.com/bahamas10/node-access-log.git"
},
"scripts": {
"test": "for f in test/*; do echo \"\n$f\"; node \"$f\" || exit 1; done; echo Passed; exit 0"
},
"main": "./index.js",
"dependencies": {
"strftime": "~0.6.2"
},
"bin": {},
"devDependencies": {},
"optionalDependencies": {},
"engines": {
"node": "*"
},
"keywords": [
"access",
"apache",
"clf",
"logs"
]
}