forked from peter-murray/node-hue-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.5 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
{
"name": "node-hue-api",
"description": "Philips Hue API Library for Node.js",
"version": "5.0.0-alpha.2",
"author": "Peter Murray <[email protected]>",
"contributors": [
{
"name": "Peter Murray",
"email": "[email protected]"
}
],
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test-model": "mocha --recursive \"lib/model/**/*.test.js\"",
"test-api": "mocha --timeout 5000 --recursive \"lib/api/**/*.test.js\"",
"test-types": "mocha --recursive \"lib/types/*.test.js\"",
"generate-webpack-files": "npx webpack --config webpack.model.config.js",
"clean-ts-definitions": "npx rimraf **/*.d.ts",
"generate-ts-definitions": "npm run clean-ts-definitions && npx typescript index.js --allowJs --declaration --emitDeclarationOnly",
"prepublishOnly": "npm run generate-ts-definitions"
},
"repository": {
"type": "git",
"url": "https://github.com/peter-murray/node-hue-api"
},
"bugs": {
"url": "https://github.com/peter-murray/node-hue-api/issues"
},
"dependencies": {
"axios": "^0.19.2",
"bottleneck": "^2.19.5",
"get-ssl-certificate": "^2.3.3"
},
"devDependencies": {
"chai": "~4.2",
"eslint": "^5.16.0",
"mocha": "^6.2.3"
},
"engines": {
"node": ">= 10.0.0"
},
"license": "Apache-2.0",
"keywords": [
"philips",
"hue",
"api",
"living",
"color",
"colour",
"automation",
"light",
"lighting",
"bridge"
]
}