-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.14 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.14 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
81
82
83
84
85
{
"name": "@cmsgov/qpp-shared-logger-node",
"version": "2.2.12",
"description": "Common QPP logger that is shared across the different teams",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/CMSgov/qpp-shared-logger-node.git"
},
"author": "Centers for Medicare & Medicaid Services",
"license": "CC0-1.0",
"dependencies": {
"lodash": "^4.18.1",
"morgan": "^1.10.1",
"rotating-file-stream": "^3.1.0",
"winston": "^3.10.0",
"winston-daily-rotate-file": "^4.7.1",
"winston-splunk-httplogger": "^3.1.8",
"winston-transport": "^4.5.0"
},
"devDependencies": {
"@snyk/protect": "^1.1300.1",
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"@types/morgan": "^1.9.4",
"@types/node": "^20.11.1",
"@typescript-eslint/parser": "^6.1.0",
"chai": "^4.3.7",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"mocha": "^10.2.0",
"moment": "^2.29.4",
"nyc": "^15.1.0",
"prettier": "^3.0.0",
"rimraf": "^5.0.1",
"sinon": "^15.2.0",
"snyk": "^1.1192.0",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.1.6"
},
"scripts": {
"format": "prettier --write '{src,test}/**/*.ts'",
"lint": "eslint src/* test/*",
"test": "nyc --reporter=cobertura --reporter=html node_modules/.bin/mocha './test/**/*.*(js|ts)'",
"tsc": "rimraf ./build && tsc",
"ts-node": "ts-node",
"prepublishOnly": "rimraf ./build && npm run tsc",
"snyk-protect": "snyk-protect",
"prepare": "npm run snyk-protect && npm run tsc"
},
"husky": {
"hooks": {
"pre-commit": "gitleaks --verbose --redact"
}
},
"keywords": [
"QPP",
"Quality Payment Program",
"logger",
"CMS",
"CMSgov"
],
"nyc": {
"reporter": [
"html",
"text"
],
"check-coverage": true,
"sourceMap": true,
"include": "src",
"require": [
"ts-node/register"
],
"extension": [
".ts",
".js"
]
},
"snyk": true
}