-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 929 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 929 Bytes
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
{
"name": "@reagent/logging",
"version": "0.1.0",
"description": "Standardized application logging with winston",
"main": "dist/index.js",
"repository": "https://github.com/reagent/logging",
"author": "Patrick Reagan <github@the-reagans.com>",
"license": "MIT",
"scripts": {
"lint": "eslint .",
"prebuild": "rimraf dist",
"build": "tsc -p tsconfig.build.json",
"prepack": "yarn build"
},
"prettier": {
"printWidth": 80,
"useTabs": false,
"singleQuote": true,
"tabWidth": 2
},
"devDependencies": {
"@tsconfig/node18": "^1.0.1",
"@types/node": "^18.13.0",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"eslint": "^8.33.0",
"rimraf": "^4.1.2",
"typescript": "^4.9.5"
},
"dependencies": {
"safe-stable-stringify": "^2.4.2",
"winston": "^3.8.2"
},
"files": [
"README.md",
"dist"
]
}