-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.33 KB
/
package.json
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
{
"name": "@co-digital/logging",
"version": "1.0.2",
"description": "A logging library for Node.JS applications in CO Digital.",
"homepage": "https://github.com/cabinetoffice/node-logging#README.md",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"build": "tsc",
"start": "node lib/index.js",
"lint": "eslint '{src,test}/**/*.ts'",
"lint:fix": "eslint '{src,test}/**/*.ts' --fix",
"test": "jest",
"coverage": "jest --coverage",
"prepare": "husky install",
"prepublish": "[ ! -d node_modules ] && npm ci; tsc",
"postpublish": "rm -rf lib"
},
"repository": {
"type": "git",
"url": "https://github.com/cabinetoffice/node-logging.git"
},
"engines": {
"npm": ">=10.0.0",
"node": ">=20.8.0"
},
"author": "X-CO Developers",
"license": "MIT",
"devDependencies": {
"@types/express": "^4.17.20",
"@types/jest": "^29.5.6",
"@types/luxon": "^3.3.3",
"@types/node": "^20.8.7",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"eslint": "^8.51.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"dependencies": {
"luxon": "^3.4.3",
"winston": "^3.11.0"
},
"files": [
"./lib/**/*"
],
"keywords": [
"logging",
"winston"
]
}