forked from ajfisher/node-pixel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.52 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "node-pixel",
"version": "0.9.2",
"description": "Library for controlling addressable LEDs (such as NeoPixels) from firmata or Johnny Five.",
"main": "lib/pixel.js",
"directories": {
"example": "examples"
},
"scripts": {
"test": "IS_TEST_MODE=true grunt test",
"test-cover": "IS_TEST_MODE=true istanbul cover ./node_modules/.bin/nodeunit test/*",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "git://github.com/ajfisher/node-pixel.git"
},
"keywords": [
"nodebots",
"johnny-five",
"leds",
"ws2812",
"ws2812b",
"firmata",
"neopixel",
"rgb led"
],
"author": {
"name": "Andrew Fisher (ajfisher)",
"email": "ajfisher.td@gmail.com",
"url": "http://twitter.com/ajfisher"
},
"license": {
"type": "MIT",
"url": "https://github.com/ajfisher/node-pixel/blob/master/LICENSE"
},
"bugs": {
"url": "https://github.com/ajfisher/node-pixel/issues"
},
"dependencies": {
"color-string": "^1.4.0",
"johnny-five": "^0.11.2",
"firmata": "^0.17.0"
},
"devDependencies": {
"board-io": "^3.0.4",
"coveralls": "^2.11.15",
"grunt": "^1.0.1",
"grunt-cli": "^1.2.0",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-nodeunit": "^1.0.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-exec": "^3.0.0",
"grunt-todo": "^0.5.0",
"istanbul": "^0.4.5",
"mock-firmata": "0.2.0",
"nodeunit": "^0.11.0",
"sinon": "^3.0.0"
}
}