forked from CliffS/ikea-tradfri
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1023 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
{
"name": "ikea-tradfri",
"version": "4.0.0",
"description": "A library to access the Ikea Trådfri lighting system without needing to call a separate binary",
"main": "lib/Tradfri.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "coffee -c -o lib src",
"watch": "coffee -c -o lib -w src &",
"prepublishOnly": "npm run build",
"start": "scripts/testrun.coffee"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CliffS/ikea-tradfri.git"
},
"keywords": [
"ikea",
"tradfri",
"coap",
"zigbee"
],
"author": "Cliff Stanford <cliff@may.be>",
"license": "LGPL-3.0",
"bugs": {
"url": "https://github.com/CliffS/ikea-tradfri/issues"
},
"homepage": "https://github.com/CliffS/ikea-tradfri#readme",
"dependencies": {
"debug": "^4.1.1",
"node-tradfri-client": "^2.1.0",
"promise.prototype.finally": "^3.1.2"
},
"devDependencies": {
"coffeescript": "^2.4.1",
"wtfnode": "^0.8.1"
}
}