-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.18 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.18 KB
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
{
"name": "lesslog",
"version": "1.0.2",
"description": "Zero-dependency, teeny-tiny and serverless-ready logging utility for Node.js.",
"author": "Robert Da Silva <mail@robdasilva.com> (https://robdasilva.com)",
"homepage": "https://github.com/robdasilva/lesslog#readme",
"license": "MIT",
"keywords": [
"aws",
"cloudwatch",
"debug",
"debugger",
"lambda",
"log",
"logger",
"logless",
"metrics",
"monitoring",
"serverless"
],
"type": "module",
"exports": {
"import": {
"default": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"require": {
"default": "./dist/index.cjs",
"types": "./dist/index.d.cts"
}
},
"main": "./dist/index.cjs",
"types": "./dist/index.d.cts",
"files": [
"dist",
"LICENSE",
"package.json",
"README.md"
],
"scripts": {
"format": "prettier --write",
"format:all": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint --fix",
"lint:all": "eslint --fix .",
"lint:check": "eslint .",
"postpublish": "rm -rf dist",
"postversion": "git push && git push --tags",
"prepack": "pnpm run postpublish && tsup index.ts --dts --format cjs,esm",
"prepare": "lefthook install",
"preversion": "pnpm run lint:all && pnpm run test:all",
"test": "jest --bail --find-related-tests",
"test:all": "jest --pass-with-no-tests",
"test:ci": "jest --ci --coverage --pass-with-no-tests",
"types:check": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "https://github.com/robdasilva/lesslog.git"
},
"bugs": {
"url": "https://github.com/robdasilva/lesslog/issues"
},
"engines": {
"node": ">=16"
},
"packageManager": "pnpm@8.15.5+sha256.4b4efa12490e5055d59b9b9fc9438b7d581a6b7af3b5675eb5c5f447cee1a589",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.30",
"eslint": "^8.9.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^27.9.0",
"jest": "^29.7.0",
"lefthook": "^1.6.7",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"tsup": "^8.0.2",
"typescript": "^5.4.3",
"typescript-eslint": "^7.3.1"
}
}