-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
61 lines (61 loc) · 1.43 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
54
55
56
57
58
59
60
61
{
"name": "lifx-lan-client",
"description": "Node.js implementation of the LIFX LAN protocol",
"version": "2.1.0",
"author": "Marius Rumpf <[email protected]>",
"bugs": {
"url": "https://github.com/node-lifx/lifx-lan-client/issues"
},
"dependencies": {
"eventemitter3": "^4.0.7",
"lodash": "^4.17.15"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"chai": "^4.3.6",
"codecov": "^3.8.3",
"eslint": "^8.14.0",
"mocha": "^9.2.2",
"nyc": "^15.1.0",
"sinon": "^13.0.2",
"typescript": "^4.6.3"
},
"directories": {
"test": "test",
"lib": "src",
"example": "example"
},
"homepage": "https://github.com/node-lifx/lifx-lan-client#readme",
"keywords": [
"bulb",
"lan",
"lifx",
"light",
"lightbulb"
],
"license": "MIT",
"main": "./src/lifx",
"types": "./src/lifx.d.ts",
"engines": {
"node": ">=8.10"
},
"repository": {
"type": "git",
"url": "git+https://github.com/node-lifx/lifx-lan-client.git"
},
"scripts": {
"lint": "eslint src/ test/ example/ cli.js",
"lint:fix": "npm run lint -- --fix",
"pretest": "npm run lint",
"unittest": "mocha || true",
"unittest:bail": "mocha --bail || true",
"test": "nyc --reporter=lcov mocha",
"report-coverage": "codecov"
},
"mocha": {
"ui": "bdd",
"recursive": true,
"spec": "test/unit/"
}
}