-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.17 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
{
"name": "@enigmatis/polaris-nest-logger",
"version": "1.0.1",
"description": "A module that lets you create a polaris-logger dedicated to NestJs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "jest",
"test:ci": "jest --coverage --ci --reporters=default --reporters=jest-junit",
"build": "rimraf dist && tsc",
"prepare": "npm run build",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/Enigmatis/polaris-nest-logger.git"
},
"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}"
}
],
"branches": [
{
"name": "development",
"channel": "beta",
"prerelease": "beta"
},
{
"name": "master"
}
]
},
"author": "",
"license": "ISC",
"dependencies": {
"@enigmatis/polaris-logs": "^2.8.2"
},
"devDependencies": {
"@types/jest": "^25.2.1",
"jest": "^25.4.0",
"jest-junit": "^10.0.0",
"ts-jest": "^25.4.0",
"typescript": "^3.8.3",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^7.6.0",
"@semantic-release/changelog": "^3.0.6",
"@semantic-release/git": "latest",
"@nestjs/core": "^7.0.3",
"@types/node": "^13.9.1",
"@nestjs/common": "^7.0.3",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.5.4",
"rimraf": "^2.7.1"
},
"peerDependencies": {
"@nestjs/core": "^7.0.3",
"@nestjs/common": "^7.0.3"
},
"jest-junit": {
"suiteName": "Jest Tests",
"outputDirectory": "test",
"outputName": "junit-test-report.xml"
}
}