forked from Enigmatis/polaris-logs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 3.1 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
102
103
104
105
106
107
108
109
110
{
"name": "@enigmatis/polaris-logs",
"version": "2.6.0",
"description": "A logging library",
"main": "dist/src/main.js",
"types": "dist/src/main.d.ts",
"publishConfig": {
"access": "public"
},
"scripts": {
"cz": "git add . && git-cz",
"setup": "npm ci",
"build": "rimraf dist && tsc -p tsconfig.json",
"build-watch": "tsc --watch -p tsconfig.json",
"clean": "shx rm -rf node_modules/ dist/ docs/",
"typedoc": "typedoc --out ./docs --mode modules --tsconfig ./tsconfig.json ./src/",
"posttypedoc": "shx cp .nojekyll docs/.nojekyll",
"prepare": "npm run lint:fix && npm run build",
"lint": "npm run tslint-check && tslint -p .",
"lint:fix": "npm run tslint-check && tslint -p . --fix",
"tslint-check": "tslint-config-prettier-check ./tslint.json",
"travis-deploy-once": "travis-deploy-once",
"test": "jest"
},
"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.0.9",
"@types/serialize-error": "^2.1.0",
"@types/winston": "^2.4.4",
"clean-deep": "^3.1.0",
"serialize-error": "^3.0.0",
"winston": "^3.2.1",
"winston-daily-rotate-file": "^3.10.0",
"winston-logstash-transport": "^2.0.0",
"winston-transport": "^4.3.0"
},
"devDependencies": {
"@commitlint/cli": "^8.3.3",
"@commitlint/config-conventional": "^7.6.0",
"@semantic-release/changelog": "^3.0.6",
"@semantic-release/git": "^7.0.18",
"@types/jest": "^24.0.23",
"@types/node": "^12.12.12",
"cz-conventional-changelog": "^2.1.0",
"husky": "^1.3.1",
"jest": "24.1.0",
"pre-commit": "^1.2.2",
"prettier": "^1.19.1",
"rimraf": "^2.7.1",
"shx": "^0.3.2",
"travis-deploy-once": "^5.0.11",
"ts-jest": "^24.2.0",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"tslint-consistent-codestyle": "^1.16.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-plugin-prettier": "^2.0.1",
"typedoc": "^0.15.3",
"typescript": "^3.7.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "npm run lint:fix"
}
}
}