forked from schamane/node-syslog
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 838 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 838 Bytes
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": "node-syslog",
"version": "1.2.0",
"main": "lib/index",
"engines": {
"node": ">=0.8.0"
},
"os": [
"!win32"
],
"scripts": {
"test": "node test"
},
"description": "Node module to support sending messages to syslog daemon",
"author": "Nazar Kulyk <nasar.kulyk@googlemail.com>",
"homepage": "http://github.com/schamane/node-syslog",
"repository": {
"type": "git",
"url": "git@github.com:schamane/node-syslog.git"
},
"bugs": {
"url": "https://github.com/schamane/node-syslog/issues"
},
"licenses": [
{
"type": "Simplified BSD License",
"url": "http://en.wikipedia.org/wiki/BSD_licenses"
}
],
"tags": [
"syslog",
"system",
"log",
"logging"
],
"dependencies": {
"bindings": "^1.2.1",
"nan": "^2.1.0"
},
"gypfile": true
}