-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.28 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": "node-luxafor",
"version": "2.1.0",
"description": "Control your Luxafor light",
"keywords": [
"node",
"luxafor",
"led",
"light"
],
"main": "lib/index.js",
"scripts": {
"build": "babel src -d lib",
"lint": "eslint --env node src",
"test": "jest --coverage"
},
"engines": {
"node": "8.4.0"
},
"repository": {
"type": "git",
"url": "https://github.com/mattgoucher/node-luxafor"
},
"bugs": "https://github.com/mattgoucher/node-luxafor/issues",
"homepage": "https://github.com/mattgoucher/node-luxafor",
"license": "MIT",
"author": {
"name": "Matt Goucher",
"email": "matt@mattgoucher.com",
"url": "https://github.com/mattgoucher"
},
"contributors": {
"name": "Josh Kloster",
"email": "klosterjosh@gmail.com",
"url": "https://github.com/joshkloster"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-minify": "^0.4.3",
"babel-preset-stage-0": "^6.24.1",
"coveralls": "^3.0.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.12.0",
"jest": "^23.1.0"
},
"dependencies": {
"hex-rgb": "^3.0.0",
"node-hid": "^0.7.2"
}
}