-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.78 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
{
"name": "mqttdb",
"version": "1.4.2",
"description": "JSON Store with MQTT Interface",
"main": "index.js",
"preferGlobal": true,
"bin": {
"mqttdb": "./index.js"
},
"scripts": {
"test": "camo-purge ; xo && nyc mocha --exit test/test.js && nyc report --reporter=text-lcov | coveralls --force",
"lint": "xo",
"lintfix": "xo --fix",
"testonly": "mocha test/test.js",
"testcov": "nyc mocha test/test.js",
"doc": "jsdoc2md -f lib/worker.js -t jsdoc/sandbox.hbs > ../mqttDB.wiki/Sandbox.md"
},
"engines": {
"node": ">=6.0.0"
},
"repository": "https://github.com/hobbyquaker/mqttDB",
"engineStrict": true,
"author": "Sebastian Raff <hobbyquaker@gmail.com> https://github.com/hobbyquaker",
"license": "MIT",
"dependencies": {
"async": "^2.5.0",
"bootstrap": "^4.1.1",
"bootstrap-3-typeahead": "^4.0.2",
"codemirror": "^5.29.0",
"express": "^4.15.4",
"font-awesome": "^4.7.0",
"jquery": "^3.2.1",
"jquery-resizable-dom": "^0.32.0",
"json-stringify-pretty-compact": "https://github.com/hobbyquaker/json-stringify-pretty-compact",
"mqtt": "^2.18.0",
"mqtt-wildcard": "^3.0.9",
"obj-ease": "^1.0.1",
"persist-json": "^1.2.0",
"socket.io": "^2.0.3",
"yalm": "^4.1.0",
"yargs": "^11.0.0"
},
"devDependencies": {
"camo-purge": "latest",
"coveralls": "latest",
"jsdoc-to-markdown": "latest",
"mocha": "latest",
"nyc": "latest",
"request": "latest",
"should": "latest",
"socket.io-client": "^2.0.3",
"stream-splitter": "latest",
"xo": "latest"
},
"xo": {
"space": 4,
"ignore": [
"test/test.js"
],
"rules": {
"no-case-declarations": "warn",
"no-restricted-modules": "warn",
"node/no-deprecated-api": "warn"
}
}
}