-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.1 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
{
"name": "aedes-authorization-plugin",
"version": "1.0.1",
"description": "Semi-opinionated authorization plugin for aedes MQTT Broker",
"main": "index.js",
"scripts": {
"test": "mocha test/test.js --exit",
"coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bjyurkovich/aedes-authorization-plugin.git"
},
"keywords": [
"aedes",
"mqtt",
"authorization"
],
"author": "bjyurkovich",
"license": "MIT",
"bugs": {
"url": "https://github.com/bjyurkovich/aedes-authorization-plugin/issues"
},
"homepage": "https://github.com/bjyurkovich/aedes-authorization-plugin#readme",
"devDependencies": {
"aedes": "^0.35.3",
"aedes-persistence": "^5.1.1",
"chai": "^4.1.2",
"coveralls": "^3.0.1",
"eslint": "^4.19.1",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0"
},
"dependencies": {
"lodash": "^4.17.10",
"mqtt-pattern": "^1.2.0"
}
}