-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 836 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 836 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
{
"name": "usocket",
"version": "1.0.3",
"description": "unix local sockets with descriptor passing",
"main": "index.js",
"scripts": {
"test": "mocha -R spec",
"configure": "node-gyp configure",
"build": "node-gyp build",
"rebuild": "node-gyp rebuild"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jhs67/usocket.git"
},
"keywords": [
"unix",
"local",
"socket",
"file",
"descriptor"
],
"author": "Jon Spencer <jon@jonspencer.ca>",
"license": "ISC",
"bugs": {
"url": "https://github.com/jhs67/usocket/issues"
},
"homepage": "https://github.com/jhs67/usocket#readme",
"devDependencies": {
"mocha": "^11.7.5"
},
"dependencies": {
"bindings": "^1.5.0",
"debug": "^4.4.3",
"nan": "^2.25.0",
"node-gyp": "^12.2.0"
}
}