-
Notifications
You must be signed in to change notification settings - Fork 11
/
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": "1.1.0",
"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.1242.0",
"aws-sdk-mock": "^5.8.0",
"lodash": "^4.17.21",
"mosca": "^2.8.3",
"mqtt": "^4.3.7",
"mqtt-match": "^3.0.0",
"redis": "^4.3.1"
},
"peerDependencies": {
"serverless-offline": "^6.1.0"
},
"jest": {
"testMatch": [
"**/__tests__/*.js"
]
},
"devDependencies": {
"jest": "^29.2.2"
}
}