forked from indexzero/node-clf-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·40 lines (40 loc) · 977 Bytes
/
package.json
File metadata and controls
executable file
·40 lines (40 loc) · 977 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
33
34
35
36
37
38
39
40
{
"name": "apache-log-parser",
"version": "0.0.2.1",
"description": "A basic parser for the common log format seen in apache and nginx logs",
"main": "index.js",
"scripts": {
"test": "node ./test.js"
},
"repository": {
"type": "git",
"url": "git@github.com:khastie/node-clf-parser.git"
},
"keywords": [
"clf",
"common",
"log",
"format",
"parser"
],
"author": "Kevin Hastie",
"license": "MIT",
"devDependencies": {
"express": "^4.11.2",
"grunt": "^0.4.5",
"grunt-cli": "^0.1.13",
"grunt-concurrent": "^1.0.0",
"grunt-contrib-copy": "^0.8.0",
"grunt-contrib-watch": "^0.6.1",
"grunt-karma": "^0.10.1",
"grunt-phantom": "^0.2.1",
"grunt-sync": "^0.2.3",
"jasmine-core": "^2.2.0",
"karma": "^0.12.31",
"karma-chrome-launcher": "^0.1.7",
"karma-jasmine": "^0.3.5",
"karma-phantomjs-launcher": "^0.1.4",
"karma-script-launcher": "^0.1.0",
"tap": "~0.4.3"
}
}