-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 2.86 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 2.86 KB
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
{
"version": "2.0.0",
"name": "mpgp",
"description": "Multiplayer Game Platform",
"author": "loktionov129",
"license": "BSD-2-Clause",
"homepage": "https://github.com/mpgp/Mpgp#readme",
"keywords": [
"entity-framework-core",
"websockets",
"asp-net-core-web-api"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mpgp/Mpgp.git"
},
"bugs": {
"url": "https://github.com/mpgp/Mpgp/issues"
},
"commitlint": {
"extends": [
"./node_modules/@commitlint/config-conventional"
],
"rules": {
"header-max-length": [
2,
"always",
50
],
"body-max-line-length": [
2,
"always",
72
],
"scope-enum": [
2,
"always",
[
"core",
"api",
"ws"
]
],
"type-enum": [
2,
"always",
[
"build",
"chore",
"ci",
"docs",
"feat",
"fix",
"perf",
"refactor",
"revert",
"style",
"test"
]
]
}
},
"lint-staged": {
"*.cs": [
"yarn run lint",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"release": {
"npmPublish": false,
"verifyConditions": [
"@semantic-release/changelog",
"@semantic-release/git",
"@semantic-release/github"
],
"prepare": [
"@semantic-release/changelog",
"@semantic-release/git"
],
"success": [
"@semantic-release/github"
],
"fail": [
"@semantic-release/github"
]
},
"scripts": {
"lint": "echo linting staged .cs files",
"start:dev": "bash ./scripts/bash/docker/compose.sh dev",
"start:prod": "bash ./scripts/bash/docker/compose.sh prod",
"test": "echo Please use yarn run test:run",
"test:run": "bash ./scripts/bash/test_runner.sh"
},
"devDependencies": {
"@commitlint/cli": "latest",
"@commitlint/config-conventional": "latest",
"@commitlint/config-lerna-scopes": "latest",
"@semantic-release/changelog": "latest",
"@semantic-release/git": "latest",
"@semantic-release/github": "latest",
"husky": "latest",
"lint-staged": "latest"
}
}