forked from bahamut657/pigpio
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 873 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
{
"name": "pigpio",
"version": "2.0.1",
"description": "Fast GPIO, PWM, servo control, state change notification, and interrupt handling on the Raspberry Pi",
"main": "pigpio.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/pigpio.git"
},
"engines": {
"node": ">=6.0.0"
},
"dependencies": {
"bindings": "^1.5.0",
"nan": "^2.14.0"
},
"devDependencies": {
"jshint": "^2.10.2"
},
"keywords": [
"gpio",
"pwm",
"servo",
"iot",
"interrupt",
"raspberry",
"raspi",
"rpi",
"pi"
],
"author": "fivdi",
"license": "MIT",
"gypfile": true
}