-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 879 Bytes
/
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
{
"name": "operation-hue-hue-hue",
"version": "1.0.0",
"description": "Operate Philips Hue lights with Twitch!",
"main": "index.js",
"scripts": {
"start": "nodemon src/index.js",
"test": "jest"
},
"keywords": [
"hue",
"lights",
"twitch",
"commands"
],
"author": "",
"license": "MIT",
"dependencies": {
"axios": "^0.21.1",
"color": "^3.1.2",
"dotenv": "^8.2.0",
"tmi.js": "^1.5.0"
},
"devDependencies": {
"eslint": "^7.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"jest": "^26.6.3",
"lint-staged": "^10.2.11",
"nodemon": "^2.0.4",
"prettier": "2.0.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --cache --fix"
]
}
}