-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
48 lines (48 loc) · 1.13 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": "awox-smartlight",
"version": "1.2.0",
"description": "Control Awox smartlight from nodejs",
"main": "src/lib.js",
"scripts": {
"release": "npm run build && npm version patch && npm publish",
"postversion": "git push && git push --tags",
"build": "babel src/lib.js > build/lib.js && babel src/cli.js > build/cli.js",
"doc": "jsdoc2md src/lib.js"
},
"bin": {
"awoxlight": "src/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dragouf/awox-smartlight.git"
},
"author": "dragouf",
"license": "MIT",
"bugs": {
"url": "https://github.com/dragouf/awox-smartlight/issues"
},
"homepage": "https://github.com/dragouf/awox-smartlight#readme",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-preset-latest": "^6.16.0",
"babel-preset-stage-2": "^6.24.1",
"jsdoc-to-markdown": "^3.0.0"
},
"keywords": [
"awox",
"smartlight",
"lightbulb",
"BLE"
],
"dependencies": {
"noble-extended": "^0.0.6",
"colorsys": "^1.0.10",
"yargs": "^6.6.0"
},
"babel": {
"presets": [
"latest",
"stage-2"
]
}
}