-
Notifications
You must be signed in to change notification settings - Fork 101
/
Copy pathpackage.json
34 lines (34 loc) · 957 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
{
"name": "rpi-ws281x-native",
"version": "1.0.4",
"description": "(raspberry-pi *only*) native bindings to control a strip of WS281x-LEDs with node.js",
"keywords": [
"raspberry",
"raspberrypi",
"ws2811",
"ws2812",
"sk6812",
"led",
"hardware"
],
"main": "index.js",
"engines": {
"node": ">=0.10.0"
},
"repository": {
"type": "git",
"url": "git://github.com/beyondscreen/node-rpi-ws281x-native.git"
},
"author": "Martin Schuhfuss <[email protected]>",
"homepage": "https://github.com/beyondscreen/node-rpi-ws281x-native",
"bugs": "https://github.com/beyondscreen/node-rpi-ws281x-native/issues",
"license": "MIT",
"scripts": {
"install": "node-gyp rebuild -j4 --release",
"upload": "if [ ! -z ${UPLOAD_DEST:-''} ] ; then rsync -azv --delete --exclude={.*,node_modules,build} . ${UPLOAD_DEST} ; fi"
},
"dependencies": {
"bindings": "^1.3.0",
"nan": "^2.14.2"
}
}