This repository has been archived by the owner on Dec 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.9 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
{
"name": "@skyleague/event-horizon-dev",
"version": "5.0.0",
"description": "The accompanying development package for @skyleague/event-horizon.",
"repository": {
"type": "git",
"url": "https://github.com/skyleague/event-horizon-dev.git"
},
"license": "MIT",
"author": "SkyLeague Technologies B.V. <technologies@skyleague.io> (https://skyleague.io)",
"type": "module",
"exports": {
".": "./.dist/index.js",
"./test": "./.dist/src/lib/test/index.js",
"./package.json": "./package.json",
"./*.js": "./.dist/*.js"
},
"types": "./.dist/index.d.ts",
"bin": {
"event-horizon": "./bin/run.js",
"event-horizon-dev": "./bin/run.js"
},
"files": [
"bin",
".dist",
"package.json"
],
"scripts": {
"build": "node --import tsx/esm build.config.ts",
"build:docs": "npx typedoc",
"check:cost": "npx cost-of-modules --no-install --include-dev",
"check:coverage": "npx vitest run --coverage=true",
"check:full": "npm run lint && npm run check:types && npm run check:coverage && npm run check:project",
"check:project": "npx node-standards lint",
"check:types": "npx tsc -p tsconfig.json",
"format": "npx prettier \"**/*.{ts,js,json,yml,yaml,md}\" --write",
"lint": "npx eslint \"./{src,test,typings}/**/*.ts\" --cache --no-eslintrc --config .eslintrc.cjs",
"lint:fix": "npm run lint -- --fix",
"lint:full": "bash -c \"FULL_LINT=true npm run lint\"",
"package": "rm -rf .dist && npm run build",
"prepare": "npx husky install || true",
"test": "npx vitest run"
},
"dependencies": {
"@aws-sdk/client-appconfig": "^3.477.0",
"@aws-sdk/client-appconfigdata": "^3.477.0",
"@aws-sdk/client-dynamodb": "^3.477.0",
"@aws-sdk/client-eventbridge": "^3.477.0",
"@aws-sdk/client-firehose": "^3.477.0",
"@aws-sdk/client-s3": "^3.477.0",
"@aws-sdk/client-secrets-manager": "^3.477.0",
"@aws-sdk/client-sfn": "^3.477.0",
"@aws-sdk/client-sqs": "^3.477.0",
"@aws-sdk/client-ssm": "^3.477.0",
"@aws-sdk/client-ssm-incidents": "^3.477.0",
"@aws-sdk/lib-dynamodb": "^3.477.0",
"@aws-sdk/lib-storage": "^3.477.0",
"@skyleague/axioms": "^3.5.0",
"@skyleague/therefore": ">=4.1.1",
"@types/express": "^4.17.21",
"express": "^4.18.2",
"express-list-endpoints": "^6.0.0",
"express-promise-router": "^4.1.1",
"tslib": "^2.6.2",
"yargs": "^17.7.2"
},
"devDependencies": {
"@skyleague/event-horizon": ">=6.0.1",
"@skyleague/node-standards": "^4.1.2",
"@types/aws-lambda": "^8.10.131",
"@types/yargs": "^17.0.32",
"typescript": "^5.3.3"
},
"peerDependencies": {
"@skyleague/event-horizon": ">=6.0.1"
},
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public",
"provenance": true,
"registry": "https://registry.npmjs.org"
},
"node-standards": {
"extends": "yargs-cli",
"rules": {
"exports": false
}
}
}