@bifravst/http-api-mock 3.0.4 → 3.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/npm/package.json +105 -0
- package/package.json +2 -2
package/npm/package.json
ADDED
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@bifravst/http-api-mock",
|
|
3
|
+
"version": "3.0.5",
|
|
4
|
+
"description": "Helper functions for AWS lambdas written in TypeScript.",
|
|
5
|
+
"exports": {
|
|
6
|
+
"./*": {
|
|
7
|
+
"import": {
|
|
8
|
+
"default": "./npm/src/*.js",
|
|
9
|
+
"types": "./src/*.ts"
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
"type": "module",
|
|
14
|
+
"scripts": {
|
|
15
|
+
"prepare": "husky && case \"$npm_command\" in install|ci) check-node-version --package ;; esac",
|
|
16
|
+
"prepublishOnly": "node --no-warnings --experimental-transform-types ./.npm/compile.ts && cp -rv cdk/* npm/cdk && cp package.json npm/package.json",
|
|
17
|
+
"test": "node --no-warnings --experimental-transform-types --test \"!(node_modules|e2e-tests|integration-tests)/**/*.spec.ts\""
|
|
18
|
+
},
|
|
19
|
+
"repository": {
|
|
20
|
+
"type": "git",
|
|
21
|
+
"url": "git+https://github.com/bifravst/http-api-mock.git"
|
|
22
|
+
},
|
|
23
|
+
"bugs": {
|
|
24
|
+
"url": "https://github.com/bifravst/http-api-mock/issues"
|
|
25
|
+
},
|
|
26
|
+
"homepage": "https://github.com/bifravst/http-api-mock",
|
|
27
|
+
"keywords": [
|
|
28
|
+
"aws",
|
|
29
|
+
"lambda",
|
|
30
|
+
"typescript"
|
|
31
|
+
],
|
|
32
|
+
"author": "Nordic Semiconductor ASA | nordicsemi.no",
|
|
33
|
+
"license": "BSD-3-Clause",
|
|
34
|
+
"lint-staged": {
|
|
35
|
+
"*.ts": [
|
|
36
|
+
"prettier --write",
|
|
37
|
+
"eslint"
|
|
38
|
+
],
|
|
39
|
+
"*.{md,json,yaml,yml}": [
|
|
40
|
+
"prettier --write"
|
|
41
|
+
]
|
|
42
|
+
},
|
|
43
|
+
"engines": {
|
|
44
|
+
"node": ">=24.19.0 <25",
|
|
45
|
+
"npm": ">=12.0.2 <13"
|
|
46
|
+
},
|
|
47
|
+
"release": {
|
|
48
|
+
"branches": [
|
|
49
|
+
"saga"
|
|
50
|
+
],
|
|
51
|
+
"remoteTags": true,
|
|
52
|
+
"plugins": [
|
|
53
|
+
"@semantic-release/commit-analyzer",
|
|
54
|
+
"@semantic-release/release-notes-generator",
|
|
55
|
+
"@semantic-release/npm",
|
|
56
|
+
[
|
|
57
|
+
"@semantic-release/github",
|
|
58
|
+
{
|
|
59
|
+
"successCommentCondition": false,
|
|
60
|
+
"failTitle": false
|
|
61
|
+
}
|
|
62
|
+
]
|
|
63
|
+
]
|
|
64
|
+
},
|
|
65
|
+
"publishConfig": {
|
|
66
|
+
"access": "public"
|
|
67
|
+
},
|
|
68
|
+
"files": [
|
|
69
|
+
"npm",
|
|
70
|
+
"cdk",
|
|
71
|
+
"src",
|
|
72
|
+
"LICENSE",
|
|
73
|
+
"README.md"
|
|
74
|
+
],
|
|
75
|
+
"prettier": "@bifravst/prettier-config",
|
|
76
|
+
"dependencies": {
|
|
77
|
+
"@aws-sdk/client-cloudformation": "3.1111.0",
|
|
78
|
+
"@aws-sdk/client-dynamodb": "3.1111.0",
|
|
79
|
+
"@aws-sdk/client-sts": "3.1111.0",
|
|
80
|
+
"@aws-cdk/toolkit-lib": "1.38.2",
|
|
81
|
+
"@aws-sdk/util-dynamodb": "3.996.9",
|
|
82
|
+
"@bifravst/aws-cdk-lambda-helpers": "4.0.96",
|
|
83
|
+
"@bifravst/cloudformation-helpers": "9.1.1",
|
|
84
|
+
"@bifravst/from-env": "3.0.2",
|
|
85
|
+
"@bifravst/run": "1.2.0",
|
|
86
|
+
"aws-cdk-lib": "2.265.0",
|
|
87
|
+
"cdk": "2.1136.0",
|
|
88
|
+
"chalk": "6.0.0",
|
|
89
|
+
"command-line-args": "6.0.2"
|
|
90
|
+
},
|
|
91
|
+
"devDependencies": {
|
|
92
|
+
"@bifravst/eslint-config-typescript": "7.0.34",
|
|
93
|
+
"@bifravst/prettier-config": "1.1.17",
|
|
94
|
+
"@commitlint/config-conventional": "21.2.2",
|
|
95
|
+
"@types/aws-lambda": "8.10.162",
|
|
96
|
+
"@types/command-line-args": "5.2.3",
|
|
97
|
+
"@types/node": "26.2.0",
|
|
98
|
+
"@typescript/native": "npm:typescript@7.0.2",
|
|
99
|
+
"check-node-version": "4.2.1",
|
|
100
|
+
"commitlint": "21.2.2",
|
|
101
|
+
"husky": "9.1.7",
|
|
102
|
+
"lint-staged": "17.3.0",
|
|
103
|
+
"typescript": "npm:@typescript/typescript6@6.0.2"
|
|
104
|
+
}
|
|
105
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bifravst/http-api-mock",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.5",
|
|
4
4
|
"description": "Helper functions for AWS lambdas written in TypeScript.",
|
|
5
5
|
"exports": {
|
|
6
6
|
"./*": {
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"type": "module",
|
|
14
14
|
"scripts": {
|
|
15
15
|
"prepare": "husky && case \"$npm_command\" in install|ci) check-node-version --package ;; esac",
|
|
16
|
-
"prepublishOnly": "node --no-warnings --experimental-transform-types ./.npm/compile.ts && cp -rv cdk/* npm/cdk",
|
|
16
|
+
"prepublishOnly": "node --no-warnings --experimental-transform-types ./.npm/compile.ts && cp -rv cdk/* npm/cdk && cp package.json npm/package.json",
|
|
17
17
|
"test": "node --no-warnings --experimental-transform-types --test \"!(node_modules|e2e-tests|integration-tests)/**/*.spec.ts\""
|
|
18
18
|
},
|
|
19
19
|
"repository": {
|