forked from ohmu/node-posix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 862 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
{
"name": "posix",
"version": "4.2.0",
"description": "The missing POSIX system calls",
"license": "MIT",
"keywords" : [
"posix", "rlimit", "getrlimit", "setrlimit", "ulimit", "setuid",
"setgid", "seteuid", "setegid", "chroot", "setreuid", "setregid",
"getpgrp", "setsid", "setpgid", "getpwnam", "getgrnam", "uid", "gid",
"initgroups", "syslog", "setlogmask", "gethostname", "sethostname",
"swapon", "swapoff"
],
"homepage": "http://github.com/ohmu/node-posix",
"repository" : {
"type" : "git",
"url" : "git://github.com/ohmu/node-posix.git"
},
"author" : "Mika Eloranta <[email protected]>",
"main" : "./lib/posix",
"dependencies" : {
"nan": "^2.14.x"
},
"scripts" : {
"test" : "make test"
},
"engines" : { "node": ">= 0.10.0" }
}