forked from fivdi/onoff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (45 loc) · 834 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
45
{
"name": "onoff",
"version": "3.2.1",
"description": "GPIO access and interrupt detection with Node.js",
"main": "onoff.js",
"directories": {
"example": "examples",
"test": "test"
},
"scripts": {
"test": "cd test && ./run-tests && cd ..",
"unittest": "mocha ./unittest"
},
"repository": {
"type": "git",
"url": "https://github.com/fivdi/onoff.git"
},
"engines": {
"node": ">=4.0.0"
},
"dependencies": {
"epoll": "^2.0.3",
"lodash.debounce": "^4.0.8"
},
"devDependencies": {
"mocha": "^5.2.0",
"mock-fs": "^4.5.0",
"mock-require": "^3.0.2"
},
"keywords": [
"gpio",
"embedded",
"interrupt",
"beaglebone",
"bbb",
"bb",
"raspberry",
"raspi",
"rpi",
"pi",
"linux"
],
"author": "fivdi",
"license": "MIT"
}