forked from jfromaniello/node-windows-eventlog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 805 Bytes
/
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
{
"name": "windows-eventlog",
"version": "2.1.0",
"description": "Native win32 module to log messages to the Windows EventLog",
"keywords": [
"windows",
"services",
"log",
"logging",
"logger"
],
"homepage": "http://jfromaniello.github.com/node-windows-eventlog",
"author": {
"name": "Jose Fernando Romaniello",
"email": "[email protected]",
"url": "http://joseoncode.com/",
"twitter": "@jfroma"
},
"repository": {
"type": "git",
"url": "git://github.com/jfromaniello/node-windows-eventlog.git"
},
"main": "index.js",
"scripts": {
"install": "node-gyp clean configure build || (exit 0)"
},
"os": [
"win32"
],
"cpu": [
"ia32",
"x64"
],
"dependencies": {
"bindings": "^1.3.0",
"nan": "^2.7.0"
}
}