-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 2.46 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
101
102
103
104
105
{
"name": "@bifravst/http-api-mock",
"version": "0.0.0-development",
"description": "Helper functions for AWS lambdas written in TypeScript.",
"exports": {
"./*": {
"import": {
"types": "./dist/src/*.d.ts",
"default": "./dist/src/*.js"
}
}
},
"type": "module",
"scripts": {
"prepare": "husky",
"prepublishOnly": "npx tsc --noEmit false --outDir ./dist -d",
"test": "npx globstar -- npx tsx --test --test-reporter spec \"!(dist|node_modules)/**/*.spec.ts\""
},
"bin": {
"http-api-mock": "cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bifravst/http-api-mock.git"
},
"bugs": {
"url": "https://github.com/bifravst/http-api-mock/issues"
},
"homepage": "https://github.com/bifravst/http-api-mock",
"keywords": [
"aws",
"lambda",
"typescript"
],
"author": "Nordic Semiconductor ASA | nordicsemi.no",
"license": "BSD-3-Clause",
"lint-staged": {
"*.ts": [
"prettier --write",
"eslint"
],
"*.{md,json,yaml,yml}": [
"prettier --write"
]
},
"engines": {
"node": ">=22",
"npm": ">=10"
},
"release": {
"branches": [
"saga"
],
"remoteTags": true,
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
[
"@semantic-release/github",
{
"successCommentCondition": false,
"failTitle": false
}
]
]
},
"publishConfig": {
"access": "public"
},
"files": [
"dist/cdk",
"dist/src",
"cdk",
"src",
"cli.js",
"LICENSE",
"README.md"
],
"prettier": "@bifravst/prettier-config",
"dependencies": {
"@aws-sdk/client-cloudformation": "3.699.0",
"@aws-sdk/client-dynamodb": "3.699.0",
"@aws-sdk/client-sts": "3.699.0",
"@aws-sdk/util-dynamodb": "3.699.0",
"@bifravst/aws-cdk-lambda-helpers": "2.2.23",
"@bifravst/cloudformation-helpers": "9.1.1",
"@bifravst/from-env": "3.0.2",
"@bifravst/run": "1.2.0",
"aws-cdk-lib": "2.171.1",
"cdk": "2.171.1",
"chalk": "5.3.0",
"tsx": "4.19.2"
},
"devDependencies": {
"@bifravst/eslint-config-typescript": "6.1.19",
"@bifravst/prettier-config": "1.1.3",
"@commitlint/config-conventional": "19.6.0",
"@types/aws-lambda": "8.10.146",
"@types/node": "22.10.1",
"commitlint": "19.6.0",
"globstar": "1.0.0",
"husky": "9.1.7"
}
}