-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.14 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
{
"name": "mqtt-wildcard",
"version": "3.0.9",
"description": "Match a MQTT Topic against Wildcards",
"main": "index.js",
"scripts": {
"test": "camo-purge ; xo && nyc mocha ./test.js && nyc report --reporter=text-lcov | coveralls --force",
"testonly": "mocha ./test.js",
"lint": "xo",
"lintfix": "xo --fix",
"benchmark": "./benchmark.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hobbyquaker/mqtt-wildcard.git"
},
"keywords": [
"mqtt",
"topic",
"wildcard",
"pattern",
"match"
],
"author": "Sebastian Raff <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/hobbyquaker/mqtt-wildcard/issues"
},
"homepage": "https://github.com/hobbyquaker/mqtt-wildcard#readme",
"devDependencies": {
"benchmark": "latest",
"camo-purge": "latest",
"coveralls": "latest",
"mocha": "latest",
"mqtt-match": "^1.0.3",
"mqtt-pattern": "^1.2.0",
"nyc": "latest",
"should": "latest",
"xo": "latest"
},
"xo": {
"space": 4,
"ignore": [
"test.js",
"benchmark.js"
],
"esnext": false
}
}