-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.07 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
43
44
45
46
{
"name": "winston-null",
"version": "2.0.0",
"description": "Null Logger transport for winston, it basically swallow all your log so nothing is logged, good for test environment.",
"main": "index.js",
"engines": {
"node": ">=6"
},
"scripts": {
"test": "mocha test",
"lint": "eslint index.js test/*.js",
"prepare": "npm run lint && npm run test"
},
"repository": {
"type": "git",
"url": "https://github.com/rbudiharso/winston-null"
},
"keywords": [
"winston",
"null",
"logger",
"winston",
"transport"
],
"author": "Rahmat Budiharso <[email protected]>",
"license": "ISC",
"dependencies": {
"semver": "^5.6.0",
"winston-compat": "^0.1.4",
"winston-transport": "^4.2.0"
},
"devDependencies": {
"chai": "^3.2.0",
"dirty-chai": "^2.0.1",
"eslint": "^5.9.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"mocha": "^5.2.0",
"rewire": "^2.3.4",
"sinon": "^7.1.1",
"winston": "^3.1.0"
},
"peerDependencies": {
"winston": ">=2.0.0"
}
}