-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.62 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
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@byu-oit/express-logger",
"version": "1.0.0",
"description": "Default express logging middleware to match BYU app dev logging standards",
"main": "dist/express-logger.js",
"types": "dist/express-logger.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"build": "rimraf dist && tsc",
"coverage": "npm run test -- --coverage || exit 0",
"lint": "ts-standard | snazzy",
"lint:fix": "ts-standard --fix | snazzy",
"test": "jest",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/byu-oit/express-logger.git"
},
"author": "Brigham Young University",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/byu-oit/express-logger/issues"
},
"homepage": "https://github.com/byu-oit/express-logger#readme",
"dependencies": {
"@byu-oit/logger": "*",
"uuid": "^8.3.2"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.2",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.1",
"@types/pino": "^7.0.5",
"@types/pino-http": "^5.8.4",
"@types/supertest": "^2.0.11",
"@types/uuid": "^8.3.1",
"express": "^4.17.1",
"jest": "^29.7.0",
"lint-staged": "^11.1.2",
"pino-pretty": "^6.0.0",
"rimraf": "^3.0.2",
"snazzy": "^9.0.0",
"supertest": "^6.1.6",
"ts-jest": "^29.1.2",
"ts-standard": "^12.0.2",
"typescript": "^5.4.2"
},
"peerDependencies": {
"@byu-oit/logger": ">=1"
},
"engines": {
"node": ">=10"
},
"jest": {
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
}
},
"lint-staged": {
"*.ts": "npm run lint:fix"
}
}