This repository has been archived by the owner on Jul 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.59 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
88
89
90
91
{
"name": "@nordicsemiconductor/asset-tracker-cloud-memfault-azure",
"version": "0.0.0-development",
"description": "Memfault integration for Azure IoT Hub developed in TypeScript.",
"type": "module",
"scripts": {
"test": "find ./ -type f -name '*.spec.ts' -not -path './node_modules/*' -not -path './dist/*' | xargs npx tsx --test --test-reporter spec",
"test:e2e": "npx tsx ./feature-runner/run-features.ts",
"prepare": "husky && check-node-version --package"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NordicSemiconductor/asset-tracker-cloud-memfault-azure-js.git"
},
"bugs": {
"url": "https://github.com/NordicSemiconductor/asset-tracker-cloud-memfault-azure-js/issues"
},
"homepage": "https://docs.nordicsemi.com/bundle/nrf-asset-tracker-saga/",
"keywords": [
"nrf-asset-tracker",
"iot",
"memfault",
"azure",
"arm"
],
"author": "Nordic Semiconductor ASA | nordicsemi.no",
"license": "BSD-3-Clause",
"devDependencies": {
"@azure/arm-appservice": "13.0.3",
"@azure/arm-deviceprovisioningservices": "5.1.0",
"@azure/arm-iothub": "6.3.0",
"@azure/arm-resources-subscriptions": "2.1.0",
"@azure/data-tables": "13.2.2",
"@azure/logger": "1.0.4",
"@bifravst/eslint-config-typescript": "6.0.10",
"@bifravst/prettier-config": "1.0.0",
"@commitlint/config-conventional": "18.6.2",
"@nordicsemiconductor/bdd-markdown": "3.5.29",
"@nordicsemiconductor/random-words": "7.0.0",
"@sinclair/typebox": "0.25.21",
"@swc/cli": "0.3.9",
"@types/chai-subset": "1.3.5",
"@types/node": "18.19.17",
"azure-iot-device-mqtt": "1.16.3",
"azure-iothub": "1.16.4",
"chai": "4.4.1",
"chai-subset": "1.6.0",
"check-node-version": "4.2.1",
"husky": "9.0.11",
"id128": "1.6.6",
"tsx": "3.14.0"
},
"lint-staged": {
"*.{md,json,yaml,yml}": [
"prettier --write"
],
"*.{ts,tsx}": [
"prettier --write",
"eslint"
]
},
"engines": {
"node": ">=20",
"npm": ">=10"
},
"release": {
"branches": [
"saga"
],
"remoteTags": true,
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/github",
{
"successComment": false,
"failTitle": false
}
]
]
},
"prettier": "@bifravst/prettier-config",
"dependencies": {
"@azure/functions": "3.5.1",
"@azure/identity": "3.4.2",
"@azure/keyvault-secrets": "4.8.0",
"@bifravst/run": "1.2.0",
"@nordicsemiconductor/from-env": "1.0.3"
}
}