-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.11 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
{
"name": "@daanv2/hue",
"version": "1.0.20",
"description": "A library to control a hue bridge",
"author": "DaanV2",
"license": "MIT",
"main": "dist/src/main.js",
"types": "dist/src/main.d.ts",
"files": [
"dist/src/**",
"!dist/test/**"
],
"scripts": {
"precompile": "tsc --build --clean",
"compile": "tsc --build",
"test": "jest",
"preversion": "",
"postversion": "git push && git push --tags",
"version": "git add -A src"
},
"keywords": [
"hue",
"library"
],
"devDependencies": {
"@jest/globals": "^29.5.0",
"@types/jest": "^29.5.2",
"@types/node-fetch": "^2.6.2",
"@vscode/vsce": "^2.19.0",
"node": "^20.3.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"dependencies": {
"@jest/types": "^29.6.3",
"jest-junit": "^16.0.0",
"node-fetch": "^2.6.12",
"ts-jest": "^29.2.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DaanV2/DaanV2.Hue.git"
},
"bugs": {
"url": "https://github.com/DaanV2/DaanV2.Hue/issues"
},
"homepage": "https://github.com/DaanV2/DaanV2.Hue#readme"
}