-
Notifications
You must be signed in to change notification settings - Fork 70
/
package.json
61 lines (61 loc) · 1.51 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.11.0",
"description": "Library for controlling addressable LEDs (such as NeoPixels) from firmata or Johnny Five.",
"main": "lib/index.js",
"directories": {
"example": "examples"
},
"scripts": {
"test": "IS_TEST_MODE=true ./node_modules/.bin/nodeunit test/*",
"test-cover": "IS_TEST_MODE=true istanbul cover ./node_modules/.bin/nodeunit test/*",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"release": "standard-version",
"lint": "./node_modules/.bin/eslint ."
},
"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.5.3"
},
"peerDependencies": {
"firmata": "^0.19.1",
"johnny-five": "^2.0.0"
},
"devDependencies": {
"board-io": "^3.0.4",
"coveralls": "^3.1.0",
"eslint": "^9.0.0",
"husky": "^9.0.5",
"istanbul": "^0.4.5",
"johnny-five": "^2.0.0",
"mock-firmata": "0.2.0",
"nodeunit": "^0.11.3",
"sinon": "^15.0.1",
"standard-version": "^9.0.0"
}
}