-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 807 Bytes
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 807 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
39
40
41
{
"name": "epoll",
"version": "4.0.2",
"description": "A low-level Node.js binding for the Linux epoll API",
"main": "epoll.js",
"directories": {
"example": "example",
"test": "test"
},
"scripts": {
"lint": "jshint *.js example/*/*.js test/*.js test/*/*.js",
"test": "cd test && ./run-tests && cd ..",
"install": "node-gyp rebuild"
},
"repository": {
"type": "git",
"url": "https://github.com/fivdi/epoll.git"
},
"engines": {
"node": ">=10.0.0"
},
"dependencies": {
"bindings": "^1.5.0",
"nan": "^2.17.0"
},
"devDependencies": {
"jshint": "^2.13.6"
},
"keywords": [
"epoll",
"epollpri",
"poll",
"pollpri",
"gpio",
"interrupt",
"linux"
],
"author": "fivdi",
"license": "MIT",
"gypfile": true
}