-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
41 lines (41 loc) · 1.01 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
{
"name": "winston-syslog-posix",
"version": "3.0.0",
"description": "Winston posix syslog transport that does not suck...",
"main": "lib/index.js",
"scripts": {
"test": "mocha --reporter spec",
"precommit": "npm test",
"prepush": "npm test",
"postmerge": "npm install",
"preversion": "npm test",
"postversion": "git push --no-verify && git push --tags --no-verify"
},
"repository": {
"type": "git",
"url": "https://github.com/lancespeelmon/winston-syslog-posix.git"
},
"keywords": [
"winston",
"logging",
"syslog",
"posix",
"logger"
],
"author": "Lance Speelmon <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/lancespeelmon/winston-syslog-posix/issues"
},
"homepage": "https://github.com/lancespeelmon/winston-syslog-posix",
"devDependencies": {
"chai": "^3.3.0",
"husky": "^0.13.1",
"mocha": "^3.2.0",
"sinon": "^1.13.0"
},
"dependencies": {
"posix": "^4.0.0",
"winston": "^2.2.0"
}
}