-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.5 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.5 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
{
"name": "@pabra/logger",
"version": "1.2.0",
"description": "A small and simple but extendable logger for typescript/javascript in browser and Node.js.",
"sideEffects": [
"./src/transporters.ts",
"./dist/cjs/transporters.js",
"./dist/esm/transporters.js"
],
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"files": [
"dist"
],
"scripts": {
"clean:coverage": "rimraf --glob coverage/*",
"clean:build": "rimraf --glob dist/*",
"clean:build:cjs": "rimraf --glob dist/cjs/*",
"clean:build:esm": "rimraf --glob dist/esm/*",
"format": "prettier --write \"{src,__tests__}/**/*.{js,ts,jsx,tsx,json,html,css,scss,yml,yaml}\"",
"format:check": "prettier --check \"{src,__tests__}/**/*.{js,ts,jsx,tsx,json,html,css,scss,yml,yaml}\"",
"lint": "eslint \"{src,__tests__}/**/*.{js,ts,jsx,tsx}\"",
"test": "jest",
"test:debug": "node --inspect node_modules/.bin/jest --runInBand",
"pretest:coverage": "npm run clean:coverage",
"test:coverage": "jest --coverage",
"test:after-commit": "run-p format:check lint test:coverage build:check",
"test:before-publish": "run-p format:check lint test build",
"prebuild:cjs": "npm run clean:build:cjs",
"build:cjs": "tsc -p tsconfig.cjs.json",
"prebuild:esm": "npm run clean:build:esm",
"build:esm": "tsc -p tsconfig.esm.json",
"build:check": "tsc",
"build": "run-p build:cjs build:esm"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pabra/logger.git"
},
"keywords": [
"logger",
"logging",
"typescript",
"browser",
"nodejs",
"syslog"
],
"author": "Patrick Braune <pabra@netzfruech.de>",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/pabra/logger/issues"
},
"homepage": "https://github.com/pabra/logger#readme",
"devDependencies": {
"@eslint/js": "^9.1.1",
"@types/jest": "^29.2.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.2.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.2.1",
"mockdate": "^3.0.5",
"node-notifier": "^10.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"prettier-plugin-organize-imports": "^3.1.1",
"rimraf": "^5.0.5",
"ts-jest": "^29.0.3",
"typescript": "^5.4.5",
"typescript-eslint": "^7.7.1"
},
"dependencies": {
"fast-safe-stringify": "^2.1.1"
}
}