-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.42 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "ledctl",
"description": "Control your LEDs from JavaScript or using terminal",
"version": "0.2.2",
"author": {
"name": "Robert Rossmann",
"email": "[email protected]"
},
"bin": "bin/ledctl",
"dependencies": {
"async": "^0.9.0",
"lodash": "^3.1.0",
"nomnom": "^1.8.1"
},
"devDependencies": {
"coveralls": "^2.11.2",
"istanbul": "^0.3.2",
"jsdoc": "3.3.0-beta1",
"jshint": "^2.5.10",
"jshint-stylish": "^1.0.0",
"mocha": "^2.0.1",
"mocha-lcov-reporter": "^0.0.1",
"should": "^5"
},
"engines": {
"node": ">= 0.10.0"
},
"homepage": "https://github.com/Dreamscapes/ledctl",
"jshintConfig": {
"asi": true,
"camelcase": true,
"eqeqeq": true,
"immed": true,
"indent": 2,
"latedef": "nofunc",
"laxcomma": true,
"maxlen": 100,
"maxparams": 4,
"mocha": true,
"newcap": true,
"node": true,
"noempty": true,
"nonbsp": true,
"nonew": true,
"quotmark": "single",
"strict": true,
"undef": true,
"unused": true
},
"keywords": [
"led",
"control",
"light",
"lights",
"morse",
"cli",
"terminal",
"commandline",
"leds",
"raspberry",
"banana",
"beaglebone"
],
"main": "index.js",
"os": [
"linux"
],
"repository": {
"type": "git",
"url": "git://github.com/Dreamscapes/ledctl.git"
},
"scripts": {
"test": "make lint test"
}
}