This repository was 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
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.06 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.06 KB
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
{
"name": "@nordicsemiconductor/asset-tracker-cloud-device-simulator-aws",
"version": "0.0.0-development",
"description": "Simulates an nRF9160-based device for the nRF Asset Tracker for AWS.",
"bin": "./simulator.js",
"type": "module",
"scripts": {
"prepare": "husky",
"prepublishOnly": "npx swc --strip-leading-paths --delete-dir-on-start -d dist ./src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NordicSemiconductor/asset-tracker-cloud-device-simulator-aws-js.git"
},
"bugs": {
"url": "https://github.com/NordicSemiconductor/asset-tracker-cloud-device-simulator-aws-js/issues"
},
"homepage": "https://github.com/NordicSemiconductor/asset-tracker-cloud-device-simulator-aws-js#readme",
"keywords": [
"nrf-asset-tracker",
"iot",
"device-simulator"
],
"author": "Nordic Semiconductor ASA | nordicsemi.no",
"license": "BSD-3-Clause",
"dependencies": {
"@nordicsemiconductor/asset-tracker-cloud-docs": "36.0.21",
"aws-iot-device-sdk": "2.2.15",
"chalk": "5.3.0"
},
"devDependencies": {
"@bifravst/eslint-config-typescript": "6.1.9",
"@bifravst/prettier-config": "1.0.3",
"@commitlint/config-conventional": "19.2.2",
"@swc/cli": "0.4.0",
"@types/aws-iot-device-sdk": "2.2.8",
"@types/node": "20.14.10",
"husky": "9.0.11"
},
"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/npm",
[
"@semantic-release/github",
{
"successComment": false,
"failTitle": false
}
]
]
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"simulator.js",
"LICENSE",
"README.md"
],
"prettier": "@bifravst/prettier-config"
}