forked from cheery/node-udev
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 845 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 845 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": "udev",
"version": "0.7.0",
"description": "Bindings to libudev",
"main": "udev.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"install": "node-pre-gyp install --fallback-to-build"
},
"binary": {
"module_name": "udev",
"module_path": "./build/{node_abi}-{platform}-{arch}",
"package_name": "{node_abi}-{platform}-{arch}.tar.gz",
"host": "https:///"
},
"repository": {
"type": "git",
"url": "https://github.com/cheery/node-udev"
},
"engines": {
"node": ">=0.8.0"
},
"keywords": [
"udev",
"linux"
],
"os": [
"linux"
],
"author": "Henri Tuhola <henri.tuhola@gmail.com>",
"license": "BSD-2-Clause",
"gypfile": true,
"readmeFilename": "README.md",
"dependencies": {
"nan": "^2.14.0",
"node-pre-gyp": "^0.14.0"
}
}