forked from mitipi/serverless-iot-offline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.02 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
{
"name": "serverless-iot-offline",
"version": "0.1.3",
"description": "Start AWS IoT service offline. Manages topic subscriptions, lifecycle events, thing shadow management and rule engine with limited SQL syntax support.",
"main": "index.js",
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mitipi/serverless-iot-offline.git"
},
"keywords": [
"serverless",
"iot"
],
"author": "Nenad Panic",
"license": "MIT",
"bugs": {
"url": "https://github.com/mitipi/serverless-iot-offline/issues"
},
"homepage": "https://github.com/mitipi/serverless-iot-offline#readme",
"dependencies": {
"aws-sdk": "^2.307.0",
"aws-sdk-mock": "^4.1.0",
"lodash": "^4.17.11",
"mosca": "^2.8.3",
"mqtt": "^2.18.8",
"mqtt-match": "^2.0.1",
"redis": "^2.8.0"
},
"peerDependencies": {
"serverless-offline": "*"
},
"jest": {
"testMatch": [
"**/__tests__/*.js"
]
},
"devDependencies": {
"jest": "^23.5.0"
}
}