-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.58 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
62
{
"name": "pixels-opc",
"version": "5.0.0",
"description": "stream ndpixels over Open Pixel Control",
"main": "index.js",
"scripts": {
"start": "node-dev example",
"test:deps": "dependency-check . && dependency-check . --extra --no-dev -i es2040",
"test:lint": "standard",
"test:node": "NODE_ENV=test run-default tape test/*.js --",
"test:coverage": "NODE_ENV=test nyc npm run test:node",
"test:coverage:report": "nyc report --reporter=lcov npm run test:node",
"test": "npm-run-all -s test:node test:lint test:deps"
},
"browserify": {
"transform": [
"es2040"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/livejs/pixels-opc.git"
},
"keywords": [
"ndpixels",
"opc",
"open pixel control",
"led",
"leds",
"pixel",
"fadecandy",
"neopixel",
"dotstar",
"pixels"
],
"author": "Mikey <michael.williams@enspiral.com> (http://dinosaur.is)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/livejs/pixels-opc/issues"
},
"homepage": "https://github.com/livejs/pixels-opc#readme",
"devDependencies": {
"dependency-check": "^2.7.0",
"ndarray-pack": "^1.2.1",
"node-dev": "^3.1.3",
"npm-run-all": "^4.0.1",
"nyc": "^10.1.2",
"run-default": "^1.0.0",
"standard": "^8.6.0",
"stream-to-pull-stream": "^1.7.2",
"tape": "^4.6.3"
},
"dependencies": {
"@f/curry-once": "^1.3.2",
"@f/defaults": "^1.0.1",
"cwise": "^1.0.10",
"es2040": "^1.2.3",
"opc": "^1.1.3",
"pull-opc": "^1.0.0",
"pull-stream": "^3.5.0"
}
}