-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
44 lines (44 loc) · 1006 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": "udev",
"version": "1.0.1",
"description": "Bindings to libudev",
"main": "udev.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "node-gyp rebuild",
"clean": "node-gyp clean",
"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": ">=10.0.0"
},
"keywords": [
"udev",
"linux"
],
"os": [
"linux"
],
"author": "Henri Tuhola <[email protected]>",
"license": "BSD-2-Clause",
"gypfile": true,
"readmeFilename": "README.md",
"devDependencies": {
"node-gyp": "^8.1.0"
},
"dependencies": {
"@mapbox/node-pre-gyp": "^1.0.5",
"bindings": "^1.5.0",
"node-addon-api": "^4.0.0"
}
}