-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
40 lines (40 loc) · 1004 Bytes
/
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
{
"name": "mqtt-nedb-store",
"version": "0.1.1",
"description": "Store your in-flight mqtt packets in nedb",
"main": "mqtt-nedb-store.js",
"scripts": {
"test": "mocha test.js",
"pretest": "npm run check-style",
"check-style:eslint": "eslint *.js",
"check-style:jshint": "jshint *.js",
"check-style:jscs": "jscs *.js",
"check-style": "npm run check-style:jshint && npm run check-style:jscs && npm run check-style:eslint"
},
"pre-commit": "test",
"keywords": [
"mqtt",
"nedb",
"store"
],
"author": "Behrad Zari <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/behrad/mqtt-nedb-store.git"
},
"dependencies": {
"msgpack5": "^3.4.1",
"nedb": "^1.8.0"
},
"devDependencies": {
"concat-stream": "^1.4.7",
"eslint": "^2.8.0",
"jscs": "^3.0.3",
"jshint": "^2.6.3",
"mocha": "^2.2.0",
"mqtt": "^1.5.0",
"pre-commit": "^1.0.6",
"should": "^8.3.1"
}
}