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
100 lines (100 loc) · 2.95 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
92
93
94
95
96
97
98
99
100
{
"name": "@nordicsemiconductor/asset-tracker-cloud-memfault-aws",
"version": "0.0.0-development",
"description": "Memfault integration for AWS IoT developed using AWS CDK in TypeScript.",
"type": "module",
"scripts": {
"prepare": "husky && check-node-version --package && npm run compile",
"compile": "swc --strip-leading-paths ./cdk -d dist/cdk && swc --strip-leading-paths ./feature-runner -d dist/feature-runner",
"test": "tsx --no-warnings --test ./cdk/test-resources/*.spec.ts",
"test:e2e": "node --unhandled-rejections=strict dist/feature-runner/run-features.js ./features --print-results --progress"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NordicSemiconductor/asset-tracker-cloud-memfault-aws-js.git"
},
"bugs": {
"url": "https://github.com/NordicSemiconductor/asset-tracker-cloud-memfault-aws-js/issues"
},
"homepage": "https://github.com/NordicSemiconductor/asset-tracker-cloud-memfault-aws-js#readme",
"keywords": [
"nrf-asset-tracker",
"iot",
"memfault",
"aws",
"cdk"
],
"author": "Nordic Semiconductor ASA | nordicsemi.no",
"license": "BSD-3-Clause",
"devDependencies": {
"@aws-sdk/client-cloudformation": "3.609.0",
"@aws-sdk/client-dynamodb": "3.609.0",
"@aws-sdk/client-iot": "3.609.0",
"@bifravst/eslint-config-typescript": "6.1.9",
"@bifravst/prettier-config": "1.0.3",
"@commitlint/config-conventional": "19.2.2",
"@nordicsemiconductor/cloudformation-helpers": "9.1.0",
"@nordicsemiconductor/e2e-bdd-test-runner": "17.0.1",
"@nordicsemiconductor/object-to-env": "7.0.7",
"@swc/cli": "0.4.0",
"@swc/core": "1.6.13",
"@types/aws-iot-device-sdk": "2.2.8",
"@types/aws-lambda": "8.10.140",
"@types/backoff": "2.5.5",
"@types/chai-subset": "1.3.5",
"@types/glob": "8.1.0",
"@types/node": "20.14.10",
"@types/yazl": "2.4.5",
"aws-cdk-lib": "2.148.0",
"aws-iot-device-sdk": "2.2.15",
"backoff": "2.5.0",
"cdk": "2.148.0",
"chai": "5.1.1",
"chai-subset": "1.6.0",
"chalk": "5.3.0",
"check-node-version": "4.2.1",
"chokidar": "3.6.0",
"constructs": "10.3.0",
"dependency-tree": "11.0.1",
"esbuild": "0.23.0",
"glob": "11.0.0",
"husky": "9.0.11",
"regenerator-runtime": "0.14.1",
"tsx": "4.16.2",
"yazl": "2.5.1"
},
"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": {
"@aws-sdk/client-ssm": "3.609.0"
}
}