-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.11 KB
/
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
45
46
{
"name": "linux-device",
"version": "2.0.0",
"description": "Native addon to communicate with linux devices (can also be used for sockets or FIFOs)",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"docs": "jsdoc -c jsdoc.conf.json lib/DeviceHandle.js README.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/athombv/node-linux-device.git"
},
"keywords": [
"ioctl",
"fs",
"dev",
"device",
"read",
"write",
"event",
"async",
"non-blocking"
],
"author": "Jeroen Vollenbrock <[email protected]>",
"license": "ISC",
"gypfile": true,
"bugs": {
"url": "https://github.com/athombv/node-linux-device/issues"
},
"bin": "./bin/remote-device-server",
"homepage": "https://github.com/athombv/node-linux-device#readme",
"dependencies": {
"bindings": "^1.2.1",
"socket.io": "^2.0.4",
"socket.io-client": "^2.0.4"
},
"config": {
"skipNpmInstall": true,
"npmPublishTagProduction": "latest",
"npmPublishTagStaging": "beta"
},
"devDependencies": {
"jsdoc": "^3.5.5"
}
}