This repository has been archived by the owner on Jan 23, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.27 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@nordicsemiconductor/asset-tracker-cloud-device-simulator-azure",
"version": "0.0.0-development",
"description": "Simulates Cat Tracker for the nRF Asset Tracker for Azure",
"bin": "./simulator.js",
"scripts": {
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NordicSemiconductor/asset-tracker-cloud-device-simulator-azure-js.git"
},
"bugs": {
"url": "https://github.com/NordicSemiconductor/asset-tracker-cloud-device-simulator-azure-js/issues"
},
"homepage": "https://github.com/NordicSemiconductor/asset-tracker-cloud-device-simulator-azure-js#readme",
"keywords": [
"Cloud",
"IoT",
"nRF Asset Tracker",
"Nordic Semiconductor"
],
"author": "Nordic Semiconductor ASA | nordicsemi.no",
"license": "BSD-3-Clause",
"dependencies": {
"@azure/arm-deviceprovisioningservices": "2.1.0",
"@azure/ms-rest-nodeauth": "3.0.10",
"@nordicsemiconductor/asset-tracker-cloud-device-ui-server": "4.0.1",
"azure-iot-provisioning-service": "1.8.12",
"azure-iothub": "1.13.1",
"chalk": "4.1.2",
"mqtt": "4.2.8",
"node-fetch": "^2.6.6",
"uuid": "3.4.0"
},
"devDependencies": {
"@commitlint/cli": "12.0.1",
"@commitlint/config-angular": "12.0.1",
"@nordicsemiconductor/asset-tracker-cloud-code-style": "9.2.30",
"@nordicsemiconductor/eslint-config-asset-tracker-cloud-typescript": "7.0.27",
"@types/chalk": "2.2.0",
"@types/node": "^14.14.35",
"@types/uuid": "^8.3.0",
"eslint": "7.22.0",
"husky": "5.1.3",
"lint-staged": "10.5.4",
"pinst": "2.1.6",
"prettier": "2.2.1",
"typescript": "4.2.3"
},
"lint-staged": {
"*.{md,json,yaml,yml}": [
"prettier --write"
],
"*.{ts,tsx}": [
"prettier --write",
"eslint --ext .js,.ts"
]
},
"engines": {
"node": ">=14.0.0",
"npm": ">=7.0.0"
},
"release": {
"branches": [
"saga",
{
"name": "!(saga)",
"prerelease": true
}
],
"remoteTags": true
},
"publishConfig": {
"access": "public"
},
"files": [
"package-lock.json",
"dist",
"data",
"simulator.js",
"LICENSE",
"README.md"
]
}