-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 1.72 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "ssi-logger",
"version": "6.1.0",
"description": "Simplified logging for node.js modules",
"main": "ssi-logger.js",
"directories": {
"test": "test"
},
"scripts": {
"pretest": "test -e test/ssi-logger.conf || cp test/ssi-logger.conf.example test/ssi-logger.conf; jshint *.js lib",
"test": "mocha -R spec test/*.test.js",
"testall": "TESTALL=YES mocha -R spec test/*.test.js"
},
"repository": {
"type": "git",
"url": "git://github.com/ssimicro/ssi-logger"
},
"keywords": [
"logging",
"logger",
"log",
"syslog"
],
"author": "SSi Micro Ltd <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ssimicro/ssi-logger/issues"
},
"homepage": "https://github.com/ssimicro/ssi-logger",
"dependencies": {
"amqplib": "^0.10.3",
"chalk": "^4.1.0",
"deasync": "0.1.28",
"lodash": "^4.17.21",
"logformat": "^3.1.2",
"@ssimicro/postmodern-syslog": "^2.0.0",
"moment": "^2.30.1",
"semver": "7.5.4",
"uuid": "^9.0.1"
},
"devDependencies": {
"expect.js": "^0.3.1",
"jshint": "^2.13.6",
"mocha": "^10.2.0"
},
"jshintConfig": {
"esversion": 6,
"bitwise": true,
"curly": true,
"eqeqeq": true,
"forin": true,
"freeze": true,
"globalstrict": true,
"immed": true,
"indent": 4,
"moz": true,
"newcap": true,
"noarg": true,
"node": true,
"noempty": true,
"nonew": true,
"trailing": true,
"undef": true,
"smarttabs": true,
"strict": true,
"validthis": true,
"globals": {
"describe": false,
"it": false,
"before": false,
"beforeEach": false,
"after": false,
"afterEach": false
}
}
}