-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
47 lines (47 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
44
45
46
47
{
"name": "aws-mqtt",
"version": "1.0.0",
"description": "AWS IoT MQTT broker client",
"keywords": [
"aws",
"iot",
"mqtt",
"client",
"stream",
"websocket"
],
"author": "Kliment Mamykin <kmamyk@gmail.com> (https://github.com/kmamykin)",
"license": "MIT",
"main": "lib/index.js",
"directories": [
"examples",
"lib",
"src"
],
"repository": {
"type": "git",
"url": "https://github.com/kmamykin/aws-mqtt.git"
},
"scripts": {
"compile": "rm -rf lib && babel -d lib src",
"watch": "babel --watch -d lib src",
"test": "jest --detectOpenHandles"
},
"devDependencies": {
"aws-sdk": "^2.0.0",
"babel-cli": "^6.16.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-stage-2": "^6.13.0",
"jest": "^23.4.2",
"prettier": "1.14.0",
"puppeteer": "^1.6.2",
"webpack": "^4.16.5",
"ws": "^6.0.0"
},
"dependencies": {
"aws-signature-v4": "1.2.1",
"mqtt": "2.18.2"
},
"peerDependencies": {}
}