-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 969 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
{
"name": "hue-hacking-node",
"version": "1.9.0",
"description": "Utility to control Philips Hue light bulbs",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/bjohnso5/hue-hacking-npm.git"
},
"scripts": {
"test": "tsc && ava",
"test-report": "tsc && ava --tap | tap-xunit",
"clean": "rimraf dist coverage",
"prepublish": "rimraf dist && tsc && ava && git clean -Xf"
},
"keywords": [
"Philips",
"Hue"
],
"dependencies": {
"axios": "^1.7.4"
},
"prettier": {
"trailingComma": "es5",
"singleQuote": true,
"tabWidth": 2
},
"author": "Bryan Johnson",
"license": "MIT",
"devDependencies": {
"@ava/typescript": "^5.0.0",
"@types/node": "^22.0.0",
"ava": "^6.1.2",
"moxios": "^0.4.0",
"prettier": "^3.2.5",
"rimraf": "^6.0.1",
"rxjs": "^7.8.1",
"tap-xunit": "^2.4.1",
"ts-node": "^10.9.1",
"typescript": "^5.1"
}
}