-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.98 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.98 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
{
"name": "@toreda/log",
"version": "0.6.11",
"description": "Lightweight TypeScript logger with flexible custom transports.",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"public": true,
"scripts": {
"test": "yarn jest --coverage",
"make:docs": "yarn typedoc docs --categorizeByGroup --entryPoints ./src/index.ts",
"lint": "yarn lint:nofix",
"lint:nofix": "yarn eslint src/**.{js,ts} --quiet",
"lint:fix": "yarn eslint src/**/*.{js,ts,tsx} --quiet --fix",
"build": "yarn lint && yarn gulp"
},
"repository": {
"type": "git",
"url": "git+https://github.com/toreda/log.git"
},
"keywords": [
"enterprise",
"lightweight",
"logger",
"logging",
"serverless",
"toreda",
"typescript"
],
"author": "Toreda, Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/toreda/log/issues"
},
"homepage": "https://github.com/toreda/log#readme",
"devDependencies": {
"@babel/core": "^7.16.7",
"@toreda/eslint-config": "^2.2.0",
"@toreda/prettier-config": "^1.0.1",
"@toreda/types": "^2.6.0",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.7",
"@types/webpack": "^5.28.0",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"@typescript-eslint/typescript-estree": "^5.9.0",
"babel-jest": "^27.4.5",
"canvas": "^2.8.0",
"del": "^6.0.0",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"gulp": "^4.0.2",
"gulp-typescript": "^6.0.0-alpha.1",
"jest": "^27.4.5",
"jest-cli": "^27.4.5",
"jest-environment-jsdom": "^27.4.4",
"jest-sonar-reporter": "^2.0.0",
"jsdom": "^19.0.0",
"prettier": "^2.5.1",
"ts-jest": "^27.1.2",
"ts-loader": "^9.2.6",
"ts-node": "^10.4.0",
"ts-register": "^0.1.0",
"typedoc": "^0.22.10",
"typescript": "^4.5.4",
"utf-8-validate": "^5.0.7",
"webpack": "^5.65.0"
},
"resolutions": {
"tmpl": "^1.0.5",
"glob-parent": "^5.1.2",
"ws": "^7.4.6"
},
"dependencies": {},
"prettier": "@toreda/prettier-config"
}