forked from lsongdev/node-yeelight
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1010 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": "yeelight2",
"version": "1.3.6",
"main": "index.js",
"types": "./types/index.d.ts",
"bin": {
"yeelight": "bin/yeelight.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:docs": "jsdoc -c jsdoc.json",
"build:docs:watch": "npx nodemon --exec 'npx jsdoc -c jsdoc.json' --watch index.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/song940/node-yeelight.git"
},
"author": "Lsong <[email protected]>",
"license": "MIT",
"description": "A Node.js lib for the yeelight bulb",
"keywords": [
"yeelight",
"light",
"bulb",
"yeelink",
"led",
"ssdp"
],
"bugs": {
"url": "https://github.com/song940/node-yeelight/issues"
},
"homepage": "https://blog.lsong.org/node-yeelight",
"directories": {
"doc": "docs",
"example": "example",
"test": "test"
},
"dependencies": {
"ssdp2": "*"
},
"devDependencies": {
"docdash": "*",
"jsdoc": "*"
}
}