-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 905 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
39
40
41
42
43
44
{
"name": "syspipe",
"version": "0.1.5",
"description": "Access to the operating system native pipe implementation",
"main": "build/Release/syspipe.node",
"scripts": {
"test": "semistandard && node test.js",
"install": "node-gyp rebuild"
},
"files": [
"README.md",
"LICENSE",
"binding.gyp",
"pipe.cc",
"test.js"
],
"repository": {
"type": "git",
"url": "https://github.com/jpenalbae/syspipe.git"
},
"keywords": [
"pipe",
"syscall",
"native",
"ospipe",
"syspipe"
],
"author": {
"name": "Jaime Peñalba",
"email": "jpenalbae@gmail.com"
},
"license": "LGPL-3.0",
"gypfile": true,
"bugs": {
"url": "https://github.com/jpenalbae/syspipe/issues"
},
"homepage": "https://github.com/jpenalbae/syspipe",
"devDependencies": {
"semistandard": "^10.0.0"
},
"dependencies": {
"nan": "^2.0.5"
}
}