-
Notifications
You must be signed in to change notification settings - Fork 384
/
package.json
54 lines (54 loc) · 1.28 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
48
49
50
51
52
53
54
{
"name": "aws-iot-device-sdk",
"description": "AWS IoT Node.js SDK for Embedded Devices",
"version": "2.0.0-dev",
"author": {
"name": "Amazon Web Services",
"email": "",
"url": "http://aws.amazon.com"
},
"homepage": "https://github.com/aws/aws-iot-device-sdk-js",
"main": "index.js",
"engines": {
"node": ">=8.17.0"
},
"repository": {
"type": "git",
"url": "git://github.com/aws/aws-iot-device-sdk-js"
},
"bugs": {
"url": "http://github.com/aws/aws-iot-device-sdk-js/issues"
},
"license": "Apache-2.0",
"keywords": [
"api",
"amazon",
"aws",
"iot",
"mqtt"
],
"dependencies": {
"crypto-js": "4.2.0",
"minimist": "1.2.6",
"mqtt": "4.2.8",
"@httptoolkit/websocket-stream": "^6.0.1"
},
"devDependencies": {
"gulp": "^3.9.0",
"gulp-beautify": "^2.0.0",
"gulp-concat": "^2.6.0",
"gulp-coverage": "^0.3.38",
"gulp-jscs": "^4.0.0",
"gulp-jshint": "^2.0.0",
"gulp-mocha": "^3.0.1",
"jshint": "^2.9.1",
"jshint-stylish": "^2.2.1",
"rewire": "^2.5.1",
"sinon": "^1.17.3"
},
"scripts": {
"test": "node ./node_modules/gulp/bin/gulp.js test --verbose",
"browserize": "./scripts/browserize.sh",
"beautify": "node ./node_modules/gulp/bin/gulp.js beautify"
}
}