forked from ceejbot/nanoleaves
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.21 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
{
"name": "nanoleafy-js",
"description": "An API client & command-line tool for the Nanoleaf Aurora light.",
"version": "1.3.2",
"author": "Jonathan Ilk <[email protected]>",
"bin": {
"nanoleafy": "bin/nanoleafy.js"
},
"bugs": {
"url": "https://github.com/JonathanIlk/nanoleafy/issues"
},
"dependencies": {
"axios": "~0.16.2",
"chalk": "~2.1.0",
"cli-columns": "~3.1.2",
"dotenv": "~4.0.0",
"suncalc": "~1.8.0",
"yargs": "~8.0.2"
},
"devDependencies": {
"coveralls": "~2.13.1",
"eslint-config-ceejbot": "~1.1.0",
"mocha": "~3.5.0",
"must": "~0.13.4",
"nyc": "~11.1.0",
"sinon": "~3.2.1",
"xo": "~0.18.2"
},
"directories": {
"commands": "commands"
},
"homepage": "https://github.com/JonathanIlk/nanoleafy#readme",
"keywords": [
"aurora",
"home automation",
"lighting",
"nanoleaf"
],
"license": "ISC",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/JonathanIlk/nanoleafy.git"
},
"scripts": {
"coverage": "nyc report --reporter=text-lcov | coveralls",
"lint": "xo",
"test": "nyc mocha -R spec test.js"
},
"xo": {
"extends": "eslint-config-ceejbot"
}
}