-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
48 lines (48 loc) · 1.25 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": "node-lifx",
"description": "Node.js implementation of the LIFX protocol",
"version": "0.8.0",
"author": "Marius Rumpf <[email protected]>",
"bugs": {
"url": "https://github.com/MariusRumpf/node-lifx/issues"
},
"dependencies": {
"eventemitter3": "^2.0.2",
"lodash": "^4.5.0"
},
"devDependencies": {
"babel-core": "^6.0.15",
"babel-preset-es2015": "^6.0.15",
"chai": "^3.0.0",
"codecov.io": "^0.1.6",
"eslint": "^2.13.1",
"istanbul": "^0.4.0",
"lolex": "^1.4.0",
"mocha": "^2.2.4"
},
"directories": {
"test": "test",
"lib": "lib",
"example": "example"
},
"homepage": "https://github.com/MariusRumpf/node-lifx#readme",
"keywords": [
"bulb",
"lifx",
"light",
"lightbulb"
],
"license": "MIT",
"main": "./lib/lifx",
"optionalDependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/MariusRumpf/node-lifx.git"
},
"scripts": {
"lint": "eslint lib/ test/ example/ cli.js",
"pretest": "npm run lint",
"test": "istanbul cover -root lib/ node_modules/mocha/bin/_mocha -- -u tdd -r babelhook --recursive test/unit/",
"report-coverage": "cat ./coverage/coverage.json | node_modules/codecov.io/bin/codecov.io.js"
}
}