This repository has been archived by the owner on Oct 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
67 lines (67 loc) · 1.86 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
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "iotc-explorer",
"description": "CLI for interacting with Azure IoT Central devices and applications",
"version": "1.0.2",
"author": "Microsoft",
"repository": "github:Azure/iotc-explorer",
"bugs": "https://github.com/Azure/iotc-explorer/issues",
"license": "MIT",
"main": "./dist/iotc-explorer.js",
"engines": {
"node": ">=8.0.0"
},
"bin": {
"iotc-explorer": "dist/iotc-explorer.js"
},
"keywords": [
"iotcentral",
"iot",
"azure",
"device",
"monitor"
],
"scripts": {
"commit": "commit",
"commitmsg": "commitlint -e $GIT_PARAMS",
"clean": "rimraf dist",
"lint": "tslint --project tsconfig.json -e \"**/*.json\" --fix",
"prebuild": "npm run clean && npm run lint",
"build": "tsc",
"build-verify": "npm run clean && tslint --project tsconfig.json -e \"**/*.json\" && tsc",
"test": "npm run build-verify",
"prepare": "npm t",
"watch": "tsc -w",
"start": "./dist/iotc-explorer.js",
"release": "standard-version"
},
"dependencies": {
"@azure/event-hubs": "^1.0.2",
"axios": "^0.19.0",
"azure-iothub": "^1.9.4",
"conf": "^2.0.0",
"get-caller-file": "^2.0.0",
"inquirer": "^6.2.0",
"jsome": "^2.5.0",
"source-map-support": "^0.5.6",
"string-width": "^2.1.1",
"yargs": "^12.0.1"
},
"devDependencies": {
"@commitlint/cli": "^7.1.2",
"@commitlint/config-conventional": "^7.1.2",
"@commitlint/prompt-cli": "^7.5.0",
"@commitlint/travis-cli": "^7.1.2",
"@types/async-lock": "^1.1.0",
"@types/conf": "^1.4.0",
"@types/inquirer": "0.0.43",
"@types/node": "^8.10.29",
"@types/string-width": "^2.0.0",
"@types/yargs": "^11.1.1",
"husky": "^0.14.3",
"rimraf": "^2.6.2",
"standard-version": "^5.0.2",
"tslint": "^5.11.0",
"tslint-consistent-codestyle": "^1.13.3",
"typescript": "^3.0.1"
}
}