forked from jasonsoft/nestjs-seq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.34 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
{
"name": "@jasonsoft/nestjs-seq",
"version": "1.1.6",
"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",
"bugs": {
"url": "https://github.com/jasonsoft/nestjs-seq/issues"
},
"homepage": "https://github.com/jasonsoft/nestjs-seq#readme",
"dependencies": {
"seq-logging": "1.1.2"
},
"devDependencies": {
"@types/node": "18.11.18",
"@typescript-eslint/eslint-plugin": "5.48.1",
"@typescript-eslint/parser": "5.48.1",
"eslint": "8.31.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-prettier": "4.2.1",
"prettier": "2.8.2",
"rimraf": "3.0.2",
"typescript": "4.9.4"
},
"peerDependencies": {
"@nestjs/common": "^6.10.11 || ^7.0.0 || ^8.0.0 || ^9.0.0"
}
}