-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
89 lines (89 loc) · 1.86 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "mqtt-scripts",
"version": "1.2.2",
"description": "Node.js based script runner for use in MQTT based Smart Home environments",
"main": "index.js",
"scripts": {
"test": "camo-purge ; xo && nyc mocha test.js --exit && nyc report --reporter=text-lcov | coveralls --force",
"testonly": "mocha test.js --exit",
"lintfix": "xo --fix"
},
"bin": {
"mqtt-scripts": "index.js"
},
"author": "Sebastian 'hobbyquaker' Raff <hobbyquaker@gmail.com>",
"license": "MIT",
"dependencies": {
"coffee-compiler": "^0.3.2",
"coffee-script": "^1.12.7",
"mqtt": "^2.9.2",
"node-schedule": "^1.2.3",
"suncalc": "^1.8.0",
"watch": "^1.0.2",
"yalm": "^4.0.2",
"yargs": "^12.0.5"
},
"engines": {
"node": ">= 6.0.0"
},
"engineStrict": true,
"preferGlobal": true,
"devDependencies": {
"camo-purge": "1.0.2",
"coveralls": "3.0.2",
"gulp": "4.0.0",
"jsdoc-to-markdown": "4.0.1",
"mocha": "5.2.0",
"nyc": "13.1.0",
"should": "13.2.3",
"stream-splitter": "0.3.2",
"timekeeper": "2.1.2",
"xo": "0.23.0"
},
"directories": {
"doc": "doc"
},
"repository": {
"type": "git",
"url": "https://github.com/hobbyquaker/mqtt-scripts"
},
"keywords": [
"MQTT",
"javascript",
"coffeescript",
"node.js",
"npm",
"sandbox",
"vm",
"Smart",
"Home",
"Internet",
"of",
"Things",
"IoT"
],
"bugs": {
"url": "https://github.com/hobbyquaker/mqtt-scripts/issues"
},
"homepage": "https://github.com/hobbyquaker/mqtt-scripts",
"xo": {
"space": 4,
"ignores": [
"testscripts/**",
"test.js",
"Gulpfile.js",
"mockdate.js"
],
"rules": {
"unicorn/catch-error-name": 1,
"prefer-spread": 1
}
},
"nyc": {
"include": [
"index.js",
"config.js",
"sandbox/*.js"
]
}
}