-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
42 lines (42 loc) · 993 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
41
42
{
"name": "aws-mqtt-client",
"description": "",
"version": "0.0.6",
"author": "Dmitriy Nevzorov <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/jimmyn/aws-mqtt-client.git"
},
"bugs": "https://github.com/jimmyn/aws-mqtt-client/issues",
"keywords": [
"amazon",
"aws",
"iot",
"pub/sub",
"websocket",
"mqtt"
],
"dependencies": {
"aws-signature-v4": "^1.0.1",
"core-js": "^2.4.1",
"mqtt": "^4.3.7",
"websocket-stream": "^3.3.0"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.14.0",
"chai": "^3.5.0",
"chai-string": "^1.2.0",
"mocha": "^3.0.2",
"moment": "^2.14.1"
},
"scripts": {
"compile": "babel -e -d lib/ src/",
"prepublish": "npm run compile",
"test": "mocha --recursive --require babel-register"
},
"main": "lib/index.js"
}