forked from aws/aws-iot-device-sdk-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.26 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.2.1",
"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": ">=4.0.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": {
"mqtt": "2.15.1",
"minimist": "1.2.0",
"websocket-stream": "^5.0.1",
"crypto-js": "3.1.6"
},
"devDependencies": {
"gulp": "^3.9.0",
"gulp-concat": "^2.6.0",
"gulp-jscs": "^4.0.0",
"gulp-jshint": "^2.0.0",
"gulp-mocha": "^3.0.1",
"jshint": "^2.9.1",
"jshint-stylish": "^2.2.1",
"gulp-coverage": "^0.3.38",
"gulp-beautify": "^2.0.0",
"sinon": "^1.17.3",
"rewire": "^2.5.1"
},
"scripts": {
"test": "node ./node_modules/gulp/bin/gulp.js test --verbose",
"browserize": "./scripts/browserize.sh",
"beautify": "node ./node_modules/gulp/bin/gulp.js beautify"
}
}