forked from jperkin/node-rpio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1 KB
/
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": "rpio",
"version": "1.0.13",
"description": "High performance GPIO/i2c/PWM/SPI module for Raspberry Pi",
"homepage": "https://www.npmjs.com/package/rpio",
"main": "./lib/rpio.js",
"scripts": {
"install": "node-gyp rebuild",
"lint": "eslint test/*.js",
"node-lt6": "node -e 'process.exit(process.version[1] < 6 ? 0 : 1)'",
"test": "npm run --silent node-lt6 || tap test/*.js --cov"
},
"dependencies": {
"bindings": "~1.3.0",
"nan": "~2.11.0"
},
"devDependencies": {
"eslint": "~5.9.0",
"tap": "~12.1.0"
},
"engines": {
"node": ">=0.8"
},
"repository": {
"type": "git",
"url": "https://github.com/jperkin/node-rpio.git"
},
"keywords": [
"bcm2835",
"gpio",
"gpiomem",
"i2c",
"mmap",
"pi",
"pwm",
"raspberry",
"raspberrypi",
"raspberry pi",
"rpi",
"spi"
],
"author": "Jonathan Perkin <[email protected]> (http://www.perkin.org.uk/)",
"license": "(ISC AND GPL-2.0)",
"gypfile": true
}