-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.27 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
{
"name": "wolkd",
"version": "2.0.0-alpha",
"description": "Server and user interface to control WS2801 RGB LED strips via SPI",
"main": "index.js",
"keywords": [
"spi",
"ws2801",
"led",
"raspberry",
"pi",
"spi",
"rgb",
"strip",
"wolk",
"bike"
],
"homepage": "http://wolk.bike",
"repository": {
"type": "git",
"url": "https://github.com/bertspaan/wolkd.git"
},
"bin": {
"wolkd": "index.js"
},
"scripts": {
"test": "jshint *.js lib/*.js modifiers/*.js screens/*.js patterns/*/*.js && jscs *.js lib/*.js modifiers/*.js screens/*.js patterns/*/*.js"
},
"author": "Bert Spaan",
"license": "MIT",
"dependencies": {
"ansi-256-colors": "^1.1.0",
"color": "^3.1.2",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"highland": "^2.13.5",
"minimist": "^1.2.5",
"ws": "^7.3.1"
},
"devDependencies": {
"jscs": "^1.10.0",
"jshint": "^2.12.0",
"tape": "^3.6.1"
},
"jshintConfig": {
"node": true,
"globalstrict": false,
"undef": true,
"unused": true,
"noarg": true
},
"jscsConfig": {
"preset": "airbnb",
"requireCamelCaseOrUpperCaseIdentifiers": null,
"disallowMultipleVarDecl": true,
"requireMultipleVarDecl": null
}
}