@mizdra/github-label-presets 0.0.1 → 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/index.json +131 -0
  2. package/package.json +2 -6
package/index.json ADDED
@@ -0,0 +1,131 @@
1
+ [
2
+ {
3
+ "name": "duplicate",
4
+ "color": "ededed",
5
+ "description": "This issue or Pull Request already exists"
6
+ },
7
+ {
8
+ "name": "help wanted",
9
+ "color": "e99695",
10
+ "description": "Extra attention is needed"
11
+ },
12
+ {
13
+ "name": "good first issue",
14
+ "color": "7057ff",
15
+ "description": "Good for newcomers",
16
+ "aliases": [
17
+ "beginner-friendly",
18
+ "beginner",
19
+ "good-starter-issue",
20
+ "good for beginner",
21
+ "Good for beginners",
22
+ "starter-issue",
23
+ "starter"
24
+ ]
25
+ },
26
+ {
27
+ "name": "Priority: Critical",
28
+ "color": "ee0701"
29
+ },
30
+ {
31
+ "name": "Priority: High",
32
+ "color": "d93f0b"
33
+ },
34
+ {
35
+ "name": "Priority: Medium",
36
+ "color": "fbca04"
37
+ },
38
+ {
39
+ "name": "Priority: Low",
40
+ "color": "0e8a16"
41
+ },
42
+ {
43
+ "name": "Status: Abandoned",
44
+ "color": "000000",
45
+ "description": "The issue or Pull Request is wontfix",
46
+ "aliases": ["wontfix", "invalid"]
47
+ },
48
+ {
49
+ "name": "Status: Blocked",
50
+ "color": "ee0701",
51
+ "description": "Progress on the issue is Blocked",
52
+ "aliases": ["blocked"]
53
+ },
54
+ {
55
+ "name": "Status: In Progress",
56
+ "description": "Work in Progress",
57
+ "color": "cccccc"
58
+ },
59
+ {
60
+ "name": "Status: Proposal",
61
+ "color": "d4c5f9",
62
+ "description": "Request for comments",
63
+ "aliases": ["idea", "Idea", "proposal", "Proposal", "discussion"]
64
+ },
65
+ {
66
+ "name": "Status: PR Welcome",
67
+ "color": "2E7733",
68
+ "description": "Welcome to Pull Request",
69
+ "aliases": ["Patch Welcome", "Status: Ready for PR"]
70
+ },
71
+ {
72
+ "name": "Status: Review Needed",
73
+ "color": "fbca04",
74
+ "description": "Request for review comments"
75
+ },
76
+ {
77
+ "name": "Status: Need More Info",
78
+ "color": "F9C90A",
79
+ "description": "Lacks enough info to make progress"
80
+ },
81
+
82
+ {
83
+ "name": "Type: Add",
84
+ "color": "0e8a16",
85
+ "description": "Add new features.",
86
+ "aliases": ["enhancement", "Type: Feature"]
87
+ },
88
+ {
89
+ "name": "Type: Change",
90
+ "color": "fbca04",
91
+ "description": "Change existing functionality.",
92
+ "aliases": [
93
+ "breaking",
94
+ "breaking-change",
95
+ "Type: Breaking Change",
96
+ "documents",
97
+ "document",
98
+ "Type: Documentation"
99
+ ]
100
+ },
101
+ {
102
+ "name": "Type: Deprecate",
103
+ "color": "d93f0b",
104
+ "description": "Mark as soon-to-be removed features.",
105
+ "aliases": []
106
+ },
107
+ {
108
+ "name": "Type: Fix",
109
+ "color": "5319e7",
110
+ "description": "Fix bug.",
111
+ "aliases": ["bug", "Type: Bug"]
112
+ },
113
+ {
114
+ "name": "Type: Remove",
115
+ "color": "b60205",
116
+ "description": "Remove features",
117
+ "aliases": []
118
+ },
119
+ {
120
+ "name": "Type: Security",
121
+ "color": "0052cc",
122
+ "description": "In case of vulnerabilities.",
123
+ "aliases": ["security"]
124
+ },
125
+ {
126
+ "name": "Type: Other",
127
+ "color": "aaaaaa",
128
+ "description": "Cannot be classified into any other type.",
129
+ "aliases": []
130
+ }
131
+ ]
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mizdra/github-label-presets",
3
3
  "description": "The label presets for https://github.com/azu/github-label-setup.",
4
- "version": "0.0.1",
4
+ "version": "0.1.0",
5
5
  "type": "commonjs",
6
6
  "repository": "https://github.com/mizdra/github-label-presets.git",
7
7
  "author": "mizdra <pp.mizdra@gmail.com>",
@@ -19,10 +19,6 @@
19
19
  "github-label-setup"
20
20
  ],
21
21
  "files": [
22
- "bin",
23
- "src",
24
- "!src/**/*.test.ts",
25
- "!src/**/__snapshots__",
26
- "dist"
22
+ "index.json"
27
23
  ]
28
24
  }