-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 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
{
"name": "node-fadecandy",
"version": "2.0.4",
"description": "Library to control and send video frames directly to a FadeCandy device from NodeJS via USB",
"main": "dist/FadeCandy.js",
"scripts": {
"test": "npm run build && npm run test:unit",
"test:unit": "node_modules/.bin/_mocha --ui tdd test/*.js",
"demo": "npm run build; node demo.js",
"build": "babel src --out-dir dist"
},
"files": [
"dist",
"src"
],
"keywords": [
"node",
"tessel2",
"fadecandy",
"neopixels",
"usb"
],
"dependencies": {
"debug": "^2.2.0",
"usb": "^1.6.2"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-preset-es2015": "^6.16.0",
"mocha": "^3.1.0"
},
"author": "nec@shell8.net",
"license": "MIT",
"bugs": {
"url": "https://github.com/livejs/node-fadecandy/issues"
},
"homepage": "https://github.com/livejs/node-fadecandy#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/livejs/node-fadecandy.git"
}
}