-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.04 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.04 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
{
"name": "@leanylabs/logger",
"version": "1.2.0",
"description": "LeanyLabs Logger",
"main": "lib/src/index.js",
"types": "lib/src/index.d.ts",
"scripts": {
"build": "tsc -p .",
"test": "jest"
},
"author": "LeanyLabs",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.0.0",
"@types/node": "^16.3.2",
"jest": "^28.1.3",
"ts-jest": "^28.0.8",
"typescript": "^4.3.5"
},
"repositiry": {
"type": "git",
"url": "git+https://github.com/LeanyLabs/logger.git"
},
"dependencies": {
"winston": "^3.3.4",
"winston-console-format": "^1.0.8"
},
"files": [
"lib/**/*",
"package.json",
"README.md",
"LICENSE"
],
"jest": {
"preset": "ts-jest",
"testMatch": [
"**/tests/**/*.spec.+(ts|tsx|js)"
],
"globals": {
"ts-jest": {
"diagnostics": false
}
},
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.(ts)$": "ts-jest"
},
"testEnvironment": "node",
"maxConcurrency": 1
}
}