-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
69 lines (69 loc) · 2.31 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
{
"name": "catalogist",
"description": "Catalogist is the easy way to catalog and make your software and (micro)services visible to your organization in a lightweight and developer-friendly way.",
"version": "3.1.0",
"author": "Mikael Vesavuori",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mikaelvesavuori/catalogist.git"
},
"bugs": {
"url": "https://github.com/mikaelvesavuori/catalogist/issues"
},
"keywords": [
"service-catalog",
"software-catalog",
"service-landscape",
"software-landscape",
"software-observability",
"observability",
"discovery",
"discovery-service",
"discoverability",
"software-discovery"
],
"homepage": "https://github.com/mikaelvesavuori/catalogist",
"scripts": {
"start": "npx sls offline --reloadHandler",
"deploy": "npx sls deploy",
"teardown": "npx sls remove",
"lint": "npx eslint './src/**/*.ts' --quiet --fix",
"docs": "npx arkit && npm run docs:typedoc",
"docs:typedoc": "npx typedoc --entryPoints './src' --entryPointStrategy 'expand' --exclude '**/*+(test).ts' --externalPattern '**/node_modules/**/*' --excludeExternals --out 'docs'",
"build": "npx sls package",
"build:hosting": "npm run docs && cp -r diagrams docs && cp -r images docs",
"test": "npm run test:unit",
"test:unit": "npx vitest run --coverage",
"test:unit:watch": "npx vitest --watch",
"test:integration": "npx ts-node tests/integration/index.ts",
"licenses": "npx license-compliance --direct --allow 'MIT;ISC;0BSD;BSD-2-Clause;BSD-3-Clause;Apache-2.0;Unlicense;CC0-1.0'",
"prepare": "husky install"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "3"
},
"devDependencies": {
"@types/aws-lambda": "8",
"@types/node": "22",
"@typescript-eslint/eslint-plugin": "8",
"@typescript-eslint/parser": "8",
"@vitest/coverage-v8": "2",
"arkit": "1",
"eslint": "8",
"eslint-config-prettier": "9",
"eslint-plugin-prettier": "5",
"husky": "9",
"prettier": "3",
"license-compliance": "latest",
"serverless": "3",
"serverless-esbuild": "1",
"serverless-iam-roles-per-function": "3",
"serverless-offline": "13",
"ts-node": "latest",
"tslib": "latest",
"typedoc": "latest",
"typescript": "5",
"vitest": "2"
}
}