generated from stacks-network/.github
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
93 lines (93 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
89
90
91
92
93
{
"name": "@stacks/eslint-config",
"version": "2.0.0",
"description": "A re-usable ESLint config for Stacks projects",
"main": "index.js",
"repository": "https://github.com/blockstack/eslint-config",
"author": "@stacks",
"prettier": "@stacks/prettier-config",
"files": [
"index.js"
],
"publishConfig": {
"access": "public"
},
"contributors": [
{
"name": "Hank Stoever",
"url": "https://www.hankstoever.com"
},
{
"name": "@kyranjamie",
"url": "https://kyranjamie.com"
}
],
"license": "MIT",
"peerDependencies": {
"eslint": ">=8",
"eslint-plugin-import": ">=2",
"eslint-plugin-prettier": ">=5",
"eslint-plugin-unused-imports": ">=3"
},
"dependencies": {
"@stacks/prettier-config": "^0.0.10",
"@typescript-eslint/eslint-plugin": ">=6",
"@typescript-eslint/parser": ">=6",
"eslint": ">=8",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": ">=3",
"eslint-plugin-import": ">=2",
"eslint-plugin-prettier": ">=5",
"eslint-plugin-unused-imports": ">=3"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"conventional-changelog-conventionalcommits": "^6.1.0",
"semantic-release": "^21.0.7",
"typescript": "^5.1.6"
},
"release": {
"branches": [
"main",
{
"name": "develop",
"prerelease": true
}
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits"
}
],
[
"@semantic-release/release-notes-generator",
{
"preset": "conventionalcommits"
}
],
[
"@semantic-release/npm",
{
"npmPublish": true
}
],
"@semantic-release/github",
"@semantic-release/changelog",
[
"@semantic-release/git",
{
"assets": [
"CHANGELOG.md",
"package.json",
"package-lock.json",
"yarn.lock"
],
"message": "chore(release): ${nextRelease.version}\n\n${nextRelease.notes}"
}
]
]
}
}