-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
190 lines (190 loc) · 6.04 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
{
"name": "san-devtools",
"version": "3.0.0",
"description": "Development tool for debugging San.js applications.",
"private": true,
"scripts": {
"start": "yarn workspace san-devtools start",
"build:standalone": "yarn workspace san-devtools build",
"start:extensions": "yarn workspace extensions start",
"build:extensions": "yarn workspace extensions build"
},
"workspaces": [
"packages/*"
],
"files": [
"packages"
],
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-export-default-from": "^7.8.3",
"@babel/plugin-proposal-optional-chaining": "^7.10.1",
"@babel/plugin-transform-modules-commonjs": "^7.10.1",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.9.6",
"@babel/preset-typescript": "^7.9.0",
"@commitlint/cli": "^8.3.4",
"@commitlint/core": "^8.3.4",
"@commitlint/travis-cli": "^8.3.5",
"@ecomfe/eslint-config": "^3.2.0",
"@ksky521/cz-emoji": "^1.2.1",
"@typescript-eslint/eslint-plugin": "2.34.0",
"@typescript-eslint/parser": "2.34.0",
"autoprefixer": "^9.8.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^10.1.0",
"babel-plugin-import": "^1.13.0",
"commitizen": "^4.0.3",
"commitlint-config-gitmoji": "^1.0.1",
"eslint": "^6.8.0",
"eslint-plugin-babel": "^5.3.0",
"husky": "^4.0.0",
"lint-staged": "^9.2.5",
"typescript": "^3.9.7"
},
"lint-staged": {
"!(example|dist|output|__mocks__)/**/*.(ts|js)": [
"eslint"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"gitmoji"
],
"rules": {
"header-max-length": [
2,
"always",
120
],
"subject-case": [
0,
"always",
"sentence-case"
]
}
},
"config": {
"commitizen": {
"path": "./node_modules/@ksky521/cz-emoji"
},
"@ksky521/cz-emoji": {
"types": [
{
"emoji": "🌟",
"code": ":sparkles:",
"description": "Introducing new features.",
"name": "feat"
},
{
"emoji": "🐛",
"code": ":bug:",
"description": "Fixing a bug.",
"name": "fix"
},
{
"emoji": "🚑",
"code": ":ambulance:",
"description": "Critical hotfix.",
"name": "quickfix"
},
{
"emoji": "✅",
"code": ":white_check_mark:",
"description": "Adding tests.",
"name": "test"
},
{
"emoji": "💬",
"code": ":speech_balloon:",
"description": "Updating text and literals.",
"name": "chore"
},
{
"emoji": "📦",
"code": ":package:",
"description": "Releasing / Version tags.",
"name": "release"
},
{
"emoji": "📝",
"code": ":pencil:",
"description": "Writing docs.",
"name": "docs"
},
{
"emoji": "🚨",
"code": ":rotating_light:",
"description": "Removing linter warnings.",
"name": "lint"
},
{
"emoji": "⏪",
"code": ":rewind:",
"description": "Reverting changes.",
"name": "revert"
},
{
"emoji": "🔀",
"code": ":twisted_rightwards_arrows:",
"description": "Merging branches.",
"name": "merge"
},
{
"emoji": "👌",
"code": ":ok_hand:",
"description": "Updating code due to code review changes.",
"name": "review"
},
{
"emoji": "🎨",
"code": ":art:",
"description": "Improving structure / format of the code.",
"name": "style"
},
{
"emoji": "💄",
"code": ":lipstick:",
"description": "Updating the UI and style files.",
"name": "ui"
},
{
"emoji": "👽",
"code": ":alien:",
"description": "Updating code due to external API changes.",
"name": "compat"
},
{
"emoji": "💥",
"code": ":boom:",
"description": " Refactoring code.",
"name": "refactor"
},
{
"emoji": "🎉",
"code": ":tada:",
"description": "Initial commit.",
"name": "init"
}
],
"skipQuestions": [
"scope",
"body",
"issues"
]
}
},
"repository": {
"type": "git",
"url": "git://github.com/baidu/san-devtools"
},
"author": "ksky521 <[email protected]>",
"license": "MIT"
}