-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 866 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 866 Bytes
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
{
"name": "iotedge-runtime",
"version": "0.1.3",
"description": "an NPM wrapper around the Azure IoT Edge dev tool",
"main": "index.js",
"files": [
"bin",
"lib",
"README.md",
"LICENSE.md",
"iotedgedev-license.md",
"Dockerfile"
],
"bin": {
"start-iotedge": "./bin/run-container.sh",
"build-iotedge": "./bin/build-container.sh",
"iotedge": "./bin/iotedge.sh"
},
"scripts": {
"preinstall": "docker --version",
"start": "./bin/run-container.sh"
},
"author": {
"name": "Pine View Software AS",
"email": "hello@pineview.io"
},
"repository": {
"type": "git",
"url": "git@github.com:pineviewlabs/iotedge-docker.git"
},
"contributors": [
"Andrei Rusu <andrei@pineview.io>"
],
"keywords": [
"IoT",
"IoTEdge",
"docker",
"Azure IoT Edge"
],
"license": "MIT"
}