-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.6 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.6 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
82
83
84
85
86
87
88
{
"name": "@bifravst/e2e-bdd-test-runner-example",
"version": "0.0.0-development",
"description": "Example use of @bifravst/bdd-markdown",
"type": "module",
"scripts": {
"test": "$(set -o pipefail && node --experimental-transform-types --no-warnings features/run-features.ts | node --experimental-transform-types --no-warnings features/console-reporter.ts)",
"test:unit": "node --experimental-transform-types --no-warnings --test ./features/*.spec.ts",
"prepare": "husky && case \"$npm_command\" in install|ci) check-node-version --package ;; esac"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bifravst/bdd-markdown-e2e-example-aws.git"
},
"keywords": [
"bdd",
"aws",
"cloudnative",
"e2e",
"bdd",
"testing"
],
"author": "Nordic Semiconductor ASA | nordicsemi.no",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/bifravst/bdd-markdown-e2e-example-aws/issues"
},
"homepage": "https://github.com/bifravst/bdd-markdown-e2e-example-aws#readme",
"devDependencies": {
"@aws-lambda-powertools/tracer": "2.35.0",
"@aws-sdk/client-cloudformation": "3.1136.0",
"@aws-sdk/client-sqs": "3.1136.0",
"@aws-sdk/client-xray": "3.1136.0",
"@bifravst/aws-cdk-lambda-helpers": "5.0.7",
"@bifravst/bdd-markdown": "9.0.3",
"@bifravst/cloudformation-helpers": "10.0.1",
"@bifravst/eslint-config-typescript": "8.0.5",
"@bifravst/prettier-config": "2.0.2",
"@commitlint/config-conventional": "21.2.2",
"@sinclair/typebox": "0.34.52",
"@types/aws-lambda": "8.10.163",
"@types/node": "26.6.1",
"@types/yazl": "3.3.1",
"@typescript/native": "npm:typescript@7.0.2",
"aws-cdk-lib": "2.267.0",
"cdk": "2.1142.0",
"check-node-version": "4.2.1",
"commitlint": "21.2.2",
"constructs": "10.8.1",
"dependency-tree": "12.0.1",
"husky": "9.1.7",
"lint-staged": "17.5.1",
"node-fetch": "3.3.2",
"typescript": "npm:@typescript/typescript6@6.0.2",
"yazl": "3.3.1"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"eslint"
],
"*.{md,json,yaml,yml,js}": [
"prettier --write"
]
},
"release": {
"branches": [
"saga"
],
"remoteTags": true,
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/github",
{
"successCommentCondition": false,
"failTitle": false
}
]
]
},
"engines": {
"node": ">=24.19.0 <25",
"npm": ">=12.0.2 <13"
},
"prettier": "@bifravst/prettier-config"
}