-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.1 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
{
"name": "iot-core-essentials",
"version": "1.0.0",
"description": "A few features to make logging to files and requesting endpoints easier on Windows IoT Core",
"main": "index.js",
"dependencies": {
"azure-iot-device": "^1.1.17",
"azure-iot-device-mqtt": "^1.1.17",
"external-ip": "^1.3.1",
"geoip-lite": "^1.2.1",
"lodash": "^4.17.4",
"request": "^2.81.0",
"request-promise": "^4.2.1",
"util.promisify": "^1.0.0"
},
"devDependencies": {
"@types/lodash": "^4.14.71",
"@types/node": "^8.0.19",
"typescript": "^2.4.2"
},
"scripts": {
"start": "node index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "tsc -w",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kentonbmax/IoT-Core-Essentials.git"
},
"keywords": [
"IoT",
"typescript",
"javascript"
],
"author": "Kenton Bocock",
"license": "MIT",
"bugs": {
"url": "https://github.com/kentonbmax/IoT-Core-Essentials/issues"
},
"homepage": "https://github.com/kentonbmax/IoT-Core-Essentials#readme"
}