-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
42 lines (42 loc) · 1.05 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
{
"name": "express-fluent-logger",
"description": "access logger middleware using fluentd for express.js",
"version": "0.3.3",
"author": "Toshiya SAITOH <stoshiya@gmail.com>",
"dependencies": {
"debug": "^4.1.1",
"fluent-logger": "^3.2.3"
},
"devDependencies": {
"codeclimate-test-reporter": "^0.5.1",
"coveralls": "^3.0.0",
"express": "^4.16.4",
"istanbul": "^0.4.5",
"mocha": "^10.2.0",
"supertest": "^3.4.2"
},
"engines": {
"node": ">=6"
},
"files": [
"README.md",
"index.js",
"package.json",
"test"
],
"keywords": [
"express.js",
"fluentd",
"logger"
],
"license": {
"type": "MIT",
"url": "http://stoshiya.mit-license.org/2014"
},
"repository": "stoshiya/express-fluent-logger",
"scripts": {
"codeclimate": "cat ./coverage/lcov.info | ./node_modules/.bin/codeclimate-test-reporter",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"test": "./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha -- -R spec --exit"
}
}