-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
71 lines (71 loc) · 1.84 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
{
"name": "mikrolog",
"description": "The JSON logger you always wanted for Lambda.",
"version": "2.1.15",
"author": "Mikael Vesavuori",
"license": "MIT",
"type": "module",
"main": "lib/index.cjs",
"module": "lib/index.js",
"exports": {
".": {
"require": "./lib/index.cjs",
"import": "./lib/index.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/mikaelvesavuori/mikrolog.git"
},
"keywords": [
"logger",
"json-logger",
"node",
"node-logger",
"lambda",
"lambda-logger",
"serverless",
"serverless-logger",
"minimal"
],
"bugs": {
"url": "https://github.com/mikaelvesavuori/mikrolog/issues"
},
"homepage": "https://github.com/mikaelvesavuori/mikrolog#readme",
"files": [
"/lib",
"!/lib/**/*.map",
"!/tests"
],
"scripts": {
"start": "npx ts-node src/index.ts",
"test": "npx vitest run --coverage",
"test:watch": "npx vitest",
"build": "npm run clean && tsup src --format esm,cjs --dts && mv dist lib",
"clean": "rm -rf lib && rm -rf dist",
"package": "npm pack",
"prepublishOnly": "npm run build",
"prepare": "husky",
"docs": "npm run docs:clean && npm run docs:typedoc",
"docs:clean": "rm -rf docs",
"docs:typedoc": "npx typedoc --entryPoints src --entryPointStrategy expand --exclude '**/*+(test).ts' --externalPattern 'node_modules/**/*' --excludeExternals --out docs/"
},
"dependencies": {
"aws-metadata-utils": "1"
},
"devDependencies": {
"@types/node": "20",
"@typescript-eslint/eslint-plugin": "7",
"@typescript-eslint/parser": "7",
"@vitest/coverage-v8": "1",
"eslint": "8",
"eslint-config-prettier": "9",
"eslint-plugin-prettier": "5",
"husky": "9",
"prettier": "3",
"tsup": "8",
"typescript": "5",
"typedoc": "0",
"vitest": "1"
}
}