-
Notifications
You must be signed in to change notification settings - Fork 68
/
package.json
213 lines (213 loc) · 5.05 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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
{
"name": "javascript-mythbusters",
"description": "A list of JavaScript tips to avoid load performance from a high level point of view.",
"homepage": "https://mythbusters.js.org",
"version": "2.6.1",
"main": "README.md",
"contributors": [
{
"name": "Kiko Beats",
"email": "[email protected]"
},
{
"name": "María Inés Parnisari",
"email": "[email protected]"
},
{
"name": "kerwitz",
"email": "[email protected]"
},
{
"name": "Rico Sta. Cruz",
"email": "[email protected]"
},
{
"name": "William Huang",
"email": "[email protected]"
},
{
"name": "Lionel T",
"email": "[email protected]"
},
{
"name": "Ross Olson",
"email": "[email protected]"
},
{
"name": "Ilya Radchenko",
"email": "[email protected]"
},
{
"name": "Jack Hanford",
"email": "[email protected]"
},
{
"name": "Jeroen Visser",
"email": "[email protected]"
},
{
"name": "Julian Nicholls",
"email": "[email protected]"
},
{
"name": "Kilometres",
"email": "[email protected]"
},
{
"name": "Luis Adame Rodríguez",
"email": "[email protected]"
},
{
"name": "M.K",
"email": "[email protected]"
},
{
"name": "Martin Muzatko",
"email": "[email protected]"
},
{
"name": "Paul Melero",
"email": "[email protected]"
},
{
"name": "Philip Terzic",
"email": "[email protected]"
},
{
"name": "Tom Byrer",
"email": "[email protected]"
},
{
"name": "Alexander Martin",
"email": "[email protected]"
},
{
"name": "rohitanshu",
"email": "[email protected]"
},
{
"name": "Benjamin Daschel",
"email": "[email protected]"
},
{
"name": "Davis Sorenson",
"email": "[email protected]"
},
{
"name": "Edy Segura",
"email": "[email protected]"
},
{
"name": "Evgeny Samsonov",
"email": "[email protected]"
},
{
"name": "GQSM",
"email": "[email protected]"
},
{
"name": "Georgi Hristozov",
"email": "[email protected]"
},
{
"name": "Greg Remiasz",
"email": "[email protected]"
},
{
"name": "Hunter Dougless",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/Kikobeats/js-mythbusters.git"
},
"bugs": {
"url": "https://github.com/Kikobeats/js-mythbusters/issues"
},
"keywords": [
"javascript",
"mythbusters",
"perfomance",
"tips"
],
"devDependencies": {
"@commitlint/cli": "latest",
"@commitlint/config-conventional": "latest",
"@ksmithut/prettier-standard": "latest",
"browser-sync": "latest",
"concurrently": "latest",
"cssnano": "latest",
"cssnano-preset-advanced": "latest",
"docsify-cli": "latest",
"finepack": "latest",
"git-authors-cli": "latest",
"github-generate-release": "latest",
"gulp": "4",
"gulp-concat": "latest",
"gulp-postcss": "latest",
"gulp-sass": "latest",
"gulp-uglify": "latest",
"nano-staged": "latest",
"npm-check-updates": "latest",
"postcss": "latest",
"postcss-focus": "latest",
"sass": "latest",
"simple-git-hooks": "latest",
"standard": "latest",
"standard-markdown": "latest",
"standard-version": "latest"
},
"engines": {
"node": ">= 14"
},
"files": [
"docs",
"gulpfile.js",
"src"
],
"scripts": {
"build": "gulp build",
"dev": "concurrently \"gulp\" \"npm run server:dev\"",
"lint": "standard-markdown docs/**/*.md !docs/v8-tips/freeing-memory.md !docs/workflow/scope.md !docs/regexp/flags.md !docs/array/preallocation.md",
"postrelease": "npm run release:tags && npm run release:github",
"prerelease": "npm run update:check",
"pretest": "npm run lint",
"release": "standard-version -a",
"release:github": "github-generate-release",
"release:tags": "git push --follow-tags origin HEAD:master",
"server:dev": "cd docs && browser-sync start --server --files \"index.html, **/*.md, main.min.js, style.min.css\"",
"start": "docsify start docs",
"test": "echo 'no tests yet' && exit 0",
"update": "ncu -u",
"update:check": "ncu -- --error-level 2"
},
"private": true,
"license": "MIT",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"body-max-line-length": [
0
]
}
},
"nano-staged": {
"*.js": [
"prettier-standard",
"standard --fix"
],
"*.md": [
"standard-markdown"
],
"package.json": [
"finepack"
]
},
"simple-git-hooks": {
"commit-msg": "npx commitlint --edit",
"pre-commit": "npx nano-staged"
}
}