-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.12 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
47
48
49
50
51
52
53
54
55
56
{
"name": "node-tech-logger",
"version": "3.1.2",
"description": "Winston logger customized for AirVantage",
"license": "MIT",
"main": "techLogger.js",
"repository": {
"type": "git",
"url": "https://github.com/AirVantage/node-tech-logger.git"
},
"scripts": {
"test": "export NODE_CONFIG_DIR=test/config;node test/testSplash.js && node test/testLogger.js"
},
"keywords": [
"logger",
"winston"
],
"dependencies": {
"json-stringify-safe": "^5.0.1",
"lodash": "^4.16.0",
"typeof--": "^1.3.3",
"winston": "^0.8.1"
},
"optionalDependencies": {
"winston-syslog": "^1.2.5"
},
"devDependencies": {
"config": "^1.11.0",
"eslint": "^4.1.1",
"grunt": "^0.4.5",
"grunt-release": "^0.11.0",
"grunt-tag": "^0.1.0",
"js-yaml": "^3.2.2",
"prettier": "^1.5.2"
},
"eslintConfig": {
"env": {
"node": true,
"es6": true,
"mocha": true
},
"extends": [
"eslint:recommended"
],
"rules": {
"linebreak-style": [
"error",
"unix"
],
"max-params": [
"warn",
3
]
}
}
}