-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.2 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
{
"name": "twitch-chat-leds",
"version": "0.1.0",
"description": "Let to Twitch chat users to interact with RaspberryPi LEDs",
"main": "server.js",
"scripts": {
"test": "jest",
"lint": "eslint .",
"start": "NODE_ENV=production node index.js",
"dev": "NODE_ENV=development nodemon index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/carlosazaustre/twitch-chat-raspi-leds.git"
},
"keywords": [
"raspberry",
"raspberry-pi",
"twitch",
"chat",
"led"
],
"author": "Carlos Azaustre <[email protected]> (https://carlosazaustre.es/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/carlosazaustre/twitch-chat-raspi-leds/issues"
},
"homepage": "https://github.com/carlosazaustre/twitch-chat-raspi-leds#readme",
"devDependencies": {
"eslint": "^7.16.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.0",
"husky": "^4.3.6",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"nodemon": "^2.0.6",
"prettier": "^2.2.1"
},
"dependencies": {
"cylon": "^1.3.0",
"cylon-gpio": "^0.30.1",
"cylon-i2c": "^0.26.1",
"cylon-raspi": "^0.20.1",
"tmi.js": "^1.7.0"
}
}