-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.62 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
{
"name": "@bifravst/sim-details",
"version": "0.0.0-development",
"description": "Provides usage information about SIM cards that have been shipped with Nordic Semiconductor development kits.",
"type": "module",
"scripts": {
"test": "find ./ -type f -name \\*.spec.ts -not -path './e2e-tests/*' -not -path './node_modules/*' -not -path './dist/*' | xargs node --experimental-transform-types --test --test-reporter spec",
"prepare": "husky && check-node-version --package",
"test:e2e": "node --experimental-transform-types --test e2e-tests/**.spec.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bifravst/sim-details.git"
},
"bugs": {
"url": "https://github.com/bifravst/sim-details/issues"
},
"keywords": [],
"author": "Nordic Semiconductor ASA | nordicsemi.no",
"license": "BSD-3-Clause",
"devDependencies": {
"@aws-sdk/client-acm": "3.741.0",
"@aws-sdk/client-iam": "3.742.0",
"@aws-sdk/client-route-53": "3.741.0",
"@aws-sdk/client-sqs": "3.741.0",
"@aws-sdk/util-dynamodb": "3.741.0",
"@bifravst/aws-cdk-lambda-helpers": "3.0.29",
"@bifravst/ci": "2.1.0",
"@bifravst/cloudformation-helpers": "9.1.1",
"@bifravst/eslint-config-typescript": "6.1.20",
"@bifravst/prettier-config": "1.1.4",
"@commitlint/config-conventional": "19.7.1",
"@types/aws-lambda": "8.10.147",
"@types/cfn-response": "1.0.8",
"@types/lodash-es": "4.17.12",
"@types/node": "22.13.1",
"aws-cdk-lib": "2.178.0",
"cdk": "2.178.0",
"check-node-version": "4.2.1",
"commitlint": "19.7.1",
"glob": "11.0.1",
"husky": "9.1.7",
"lint-staged": "15.4.3",
"nock": "14.0.0",
"tsmatchers": "5.0.2"
},
"lint-staged": {
"*.{md,json,yaml,yml}": [
"prettier --write"
],
"*.{ts,tsx}": [
"prettier --write",
"eslint"
]
},
"engines": {
"node": ">=22.7.0",
"npm": ">=10"
},
"release": {
"branches": [
"saga"
],
"remoteTags": true,
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/github",
{
"successCommentCondition": false,
"failTitle": false
}
]
]
},
"prettier": "@bifravst/prettier-config",
"dependencies": {
"@aws-lambda-powertools/metrics": "2.13.1",
"@aws-sdk/client-dynamodb": "3.741.0",
"@bifravst/from-env": "3.0.2",
"@bifravst/timestream-helpers": "6.0.3",
"@middy/core": "6.0.0",
"@sinclair/typebox": "0.34.15",
"cfn-response": "1.0.1",
"e118-iin-list": "4.3.1",
"lodash-es": "4.17.21"
}
}