-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
101 lines (101 loc) · 3.12 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@enigmatis/polaris-logs",
"version": "5.0.0",
"description": "A logging library",
"main": "dist/src/main.js",
"types": "dist/src/main.d.ts",
"publishConfig": {
"access": "public"
},
"scripts": {
"setup": "npm ci",
"build": "tsc -p tsconfig.json",
"clean": "rimraf dist",
"rebuild": "npm run clean && npm run build",
"build-watch": "tsc --watch -p tsconfig.json",
"prepare": "npm run lint:fix && npm run rebuild",
"lint": "eslint \"{src,test}/**/*.ts\"",
"lint:fix": "eslint \"{src,test}/**/*.ts\" --fix",
"test": "jest",
"coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/Enigmatis/polaris-logs.git"
},
"keywords": [
"polaris-logs"
],
"author": "Enigmatis",
"license": "ISC",
"bugs": {
"url": "https://github.com/Enigmatis/polaris-logs/issues"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/npm",
{
"npmPublish": true
}
],
"@semantic-release/github"
],
"prepare": [
"@semantic-release/changelog",
"@semantic-release/npm",
{
"path": "@semantic-release/git",
"assets": [
"package.json",
"package-lock.json",
"CHANGELOG.md"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
},
"homepage": "https://github.com/Enigmatis/polaris-logs#readme",
"dependencies": {
"@enigmatis/polaris-common": "^1.4.5",
"clean-deep": "^3.4.0",
"object-sizeof": "^1.6.1",
"serialize-error": "^7.0.1",
"uuid": "^8.3.1",
"winston": "^3.3.3",
"winston-daily-rotate-file": "^4.5.0",
"winston-logstash-ts": "^0.2.3",
"winston-transport": "^4.4.0"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@types/jest": "^26.0.15",
"@types/node": "^14.14.6",
"@types/serialize-error": "^4.0.1",
"@types/uuid": "^8.3.0",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"jest": "^26.6.3",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"semantic-release": "^17.2.2",
"ts-jest": "^26.4.3",
"typescript": "^4.0.5"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "npm run lint:fix"
}
}
}