-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 2.24 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
{
"name": "@nomoi/reporter",
"version": "1.2.0",
"description": "",
"repository": "github:nomoixyz/reporter",
"private": false,
"main": "dist/index.js",
"type": "module",
"bin": {
"reporter": "dist/app.js"
},
"files": [
"dist/*",
"docs/*"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"lint": "eslint --ext .ts"
},
"keywords": [],
"author": "Nomoi",
"license": "MIT",
"dependencies": {
"commander": "^9.4.1",
"got": "^12.5.3"
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^9.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.2",
"lint-staged": "^13.1.0",
"prettier": "^2.8.1",
"semantic-release": "^19.0.5",
"typescript": "^4.9.4"
},
"lint-staged": {
"*.ts": "eslint"
},
"release": {
"branches": [
{
"name": "main"
},
{
"name": "next",
"channel": "next"
},
{
"name": "beta",
"channel": "beta",
"prerelease": true
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
{
"changelogFile": "docs/CHANGELOG.md"
}
],
[
"@semantic-release/npm",
{
"tarballDir": "."
}
],
[
"@semantic-release/git",
{
"assets": [
"docs/CHANGELOG.md",
"package.json"
]
}
],
[
"@semantic-release/github",
{
"assets": [
{
"path": "*.tgz"
}
]
}
]
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}