-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.16 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "hue-remote",
"version": "1.0.0",
"description": "A remote Phillips Hue API that provides authenticated access to the Hue bridge",
"type": "module",
"exports": "./index.js",
"scripts": {
"test": "c8 --check-coverage --lines 95 --functions 95 --branches 95 --statements 95 ava",
"test:no-coverage": "ava",
"open-coverage-report": "npx open-cli ./coverage/index.html",
"start": "node index.js",
"linter": "eslint \"**/*.js\"",
"linter-autofix": "eslint --fix .",
"prettier": "prettier --write docs endpoints util index.js .eslintrc.json docker-compose.yml package.json README.md",
"lint-staged": "lint-staged",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yashdalfthegray/hue-remote.git"
},
"keywords": [
"hue",
"phillips",
"hue",
"hue",
"remote"
],
"author": "Yash Kulshrestha",
"license": "MIT",
"bugs": {
"url": "https://github.com/yashdalfthegray/hue-remote/issues"
},
"homepage": "https://github.com/yashdalfthegray/hue-remote#readme",
"dependencies": {
"bluebird": "~3.7.2",
"body-parser": "~1.20.2",
"chalk": "~5.3.0",
"color-space": "~2.0.1",
"dotenv": "~16.3.1",
"express": "~4.18.1",
"helmet": "~7.1.0",
"lodash-es": "~4.17.21",
"morgan": "~1.10.0",
"node-fetch": "~3.3.2",
"redis": "~4.6.13",
"rotating-file-stream": "~3.2.1",
"winston": "~3.11.0",
"winston-daily-rotate-file": "~4.7.1"
},
"devDependencies": {
"ava": "~6.1.2",
"c8": "~9.1.0",
"eslint": "~8.56.0",
"eslint-config-airbnb-base": "~15.0.0",
"eslint-config-prettier": "~9.0.0",
"eslint-plugin-import": "~2.29.1",
"eslint-plugin-prettier": "~5.1.3",
"husky": "~9.0.11",
"lint-staged": "~15.2.2",
"prettier": "~3.1.0"
},
"engines": {
"node": " >=14.13.1 || >=16.0.0"
},
"lint-staged": {
"*.{ts,js,json,css,md}": [
"prettier --write"
]
},
"c8": {
"include": [
"**/*.js"
],
"exclude": [
"**/*.spec.js"
],
"extension": [
".js"
],
"reporter": [
"text-summary",
"html"
],
"clean": true
}
}