-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.03 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
{
"name": "@gbkwiatt/node-rpi-ws281x-native",
"version": "1.0.1",
"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": "https://github.com/gbkwiatt/node-rpi-ws281x-native.git#v1.x"
},
"author": "Gbkwiatt",
"homepage": "https://github.com/gbkwiatt/node-rpi-ws281x-native.git",
"bugs": {
"url": "https://github.com/gbkwiatt/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",
"rpi-version": "^1.4.3"
},
"directories": {
"example": "examples",
"lib": "lib"
}
}