-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
84 lines (84 loc) · 2.39 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
{
"name": "@bifravst/public-parameter-registry",
"version": "0.0.0-development",
"description": "Public parameter registry developed using AWS CDK in TypeScript",
"type": "module",
"scripts": {
"test": "node --experimental-transform-types --no-warnings --test ./lambda/*.spec.ts",
"test:e2e": "$(set -o pipefail && node --experimental-transform-types ./feature-runner/run-features.ts | node --experimental-transform-types ./feature-runner/console-reporter.ts)",
"prepare": "husky && check-node-version --package"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hello-nrfcloud/public-parameter-registry-aws.git"
},
"bugs": {
"url": "https://github.com/hello-nrfcloud/public-parameter-registry-aws/issues"
},
"homepage": "https://github.com/hello-nrfcloud/public-parameter-registry-aws#readme",
"keywords": [
"nordicsemiconductor",
"cellular-iot",
"aws",
"cdk"
],
"author": "Nordic Semiconductor ASA | nordicsemi.no",
"license": "BSD-3-Clause",
"devDependencies": {
"@aws-sdk/client-cloudfront": "3.764.0",
"@aws-sdk/client-iam": "3.758.0",
"@aws-sdk/client-s3": "3.758.0",
"@aws-sdk/client-ssm": "3.759.0",
"@bifravst/aws-cdk-lambda-helpers": "3.1.21",
"@bifravst/bdd-markdown": "8.2.62",
"@bifravst/ci": "2.0.01",
"@bifravst/cloudformation-helpers": "9.1.1",
"@bifravst/eslint-config-typescript": "6.1.20",
"@bifravst/prettier-config": "1.1.8",
"@commitlint/config-conventional": "19.8.0",
"@types/aws-lambda": "8.10.147",
"aws-cdk": "2.1005.0",
"aws-cdk-lib": "2.184.1",
"cdk": "2.1005.0",
"chalk": "5.4.1",
"check-node-version": "4.2.1",
"constructs": "10.4.2",
"husky": "9.1.7",
"p-retry": "6.2.1",
"tsmatchers": "5.0.2"
},
"lint-staged": {
"*.{md,json,yaml,yml}": [
"prettier --write"
],
"*.{ts,tsx}": [
"prettier --write",
"eslint"
]
},
"engines": {
"node": ">=22.7.0",
"npm": ">=10"
},
"volta": {
"node": "22.14.0"
},
"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"
}