-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
53 lines (53 loc) · 1.44 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": "@jasonsoft/nestjs-seq",
"version": "2.1.3",
"description": "Seq logging module for Nest framework (node.js)",
"scripts": {
"build": "rimraf -rf dist && tsc -p tsconfig.json",
"format": "prettier **/**/*.ts --ignore-path ./.prettierignore --write",
"lint": "eslint 'lib/**/*.ts' --fix",
"prepublish:npm": "npm run build",
"publish:npm": "npm publish --access public",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jasonsoft/nestjs-seq.git"
},
"keywords": [
"@jasonsoft/nestjs-seq",
"jasonsoft",
"nestjs-seq",
"nestjs",
"datalust",
"seq",
"logger"
],
"author": "jason song",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bugs": {
"url": "https://github.com/jasonsoft/nestjs-seq/issues"
},
"homepage": "https://github.com/jasonsoft/nestjs-seq#readme",
"devDependencies": {
"@nestjs/common": "10.3.7",
"@types/node": "20.12.2",
"@typescript-eslint/eslint-plugin": "7.5.0",
"@typescript-eslint/parser": "7.5.0",
"axios": "1.6.8",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.1.3",
"prettier": "3.2.5",
"rimraf": "5.0.5",
"typescript": "5.4.3"
},
"dependencies": {
"axios": "^1.3.1"
},
"peerDependencies": {
"@nestjs/common": "^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0"
}
}