-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
271 lines (271 loc) · 10.6 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
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
{
"name": "ts-devtools",
"version": "0.0.7",
"description": "Collection of TypeScript tools & utilities",
"license": "GPL-3.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"format": "prettier --single-quote --write \"./src/**/*.ts\" \"./tools/**/*.ts\"",
"format:check": "prettier --check \"./src/**/*.ts\" \"./tools/**/*.ts\"",
"install-peers": "npm ls 2>/dev/null | grep \"UNMET PEER DEPENDENCY\" | awk '{print $NF}' | xargs npm install -D",
"coverage:open": "opener ./coverage/lcov-report/index.html",
"postversion": "git push --follow-tags && npm publish --access public",
"bump:patch": "npm version patch --no-git-tag-version",
"bump:minor": "npm version minor --no-git-tag-version",
"bump:major": "npm version major --no-git-tag-version",
"postreinstall": "yarn setup",
"setup": "yarn",
"yarn:import": "(del-cli ./yarn.lock || true) && yarn import",
"version:new": "yarn version --no-git-tag-version",
"prepublishOnly": "npm run check:all && npm run build",
"preinstall": "npm run clean",
"update-lock": "npx yarn-deduplicate",
"prebuild": "del-cli dist coverage .cache || true",
"build": "tsdx build",
"watch": "tsdx watch",
"clean": "del-cli dist || true",
"reinstall": "del-cli ./node_modules || true",
"coverage": "cat ./coverage/lcov.info | coveralls",
"version": "git add -A dist",
"postpublish": "git push && git push --tags",
"yaspeller": "yaspeller .",
"markdown:check": "markdown-link-check ./README.md ./SECURITY.md",
"gitlog": "node ./scripts/changelog.js",
"lint": "eslint --cache --fix --quiet --cache-location .cache/ --format codeframe --ext js,ts .",
"lint:clean": "del-cli .eslintcache || true",
"lint:report": "tsdx lint src tools --report-file report.json",
"license:badge": "license-badger --corrections --uncategorizedLicenseTemplate \"\\${license} (\\${name} (\\${version}))\" --filteredTypes=weaklyProtective,protective --textTemplate \"License types\n(project, deps, and bundled devDeps)\" --licenseTypeColor networkProtective=blue,s{white} --packageJson --production -l licenseInfo.json ./badges/licenses-badge.svg",
"license:badge-dev": "license-badger --corrections --filteredTypes=weaklyProtective,protective --textTemplate \"License types\n(all devDeps)\" --licenseTypeColor networkProtective=blue,s{white} --allDevelopment -l licenseInfo.json ./badges/licenses-badge-dev.svg",
"license:badges": "npm run license:badge && npm run license:badge-dev",
"license:report": "yarn licenses list > license_report.txt",
"license": "license-checker --json > licenses.json",
"pretty": "pretty-quick --staged --pattern '!test/tests/lint/**'",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"remark": "remark -q -f .",
"lint:md": "remark-preset-davidtheclark",
"lint:json": "jsonlint ./package.json --quiet",
"lint:docker": "dockerfile_lint -r docker/rules/default_rules.yaml",
"format:md": "remark-preset-davidtheclark --format",
"docs": "npm run docs:html",
"docs:html": "typedoc --tsconfig tsconfig.json --out docs/html/ --theme minimal --excludePrivate --plugin none",
"docs:md": "typedoc --tsconfig tsconfig.json --out docs/md/ --theme markdown --excludePrivate --mdHideSources --mdEngine github",
"codecov": "codecov",
"semantic-release": "semantic-release",
"test:folio": "env-cmd --silent -e test folio tests/spec/",
"test": "env-cmd --silent -e test jest",
"test:coverage": "env-cmd --silent -e test jest --collectCoverage --detectOpenHandles",
"test:watch": "env-cmd --silent -e test jest --watch",
"test:license": "license-checker --production --summary --unknown --onlyAllow=\"Apache-2.0;BSD;ISC;MIT;GPL-3.0;UNLICENSED;\"",
"lint:all": "npm run lint:clean && npm run lint && npm run lint:md && npm run lint:json",
"format:all": "npm run format && npm run format:md",
"check:all": "npm run format:check",
"test:all": "npm run test && npm run test:folio && npm run test:license",
"all": "npm run format:all && npm run lint:all && npm run pretty && npm run build"
},
"dependencies": {
"big-integer": "^1.6.48",
"env-cmd": "^10.1.0",
"isomorphic-unfetch": "^3.1.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@arkweid/lefthook": "^0.7.6",
"@material/button": "^4.0.0",
"@material/checkbox": "^4.0.0",
"@material/elevation": "^4.0.0",
"@material/layout-grid": "^4.0.0",
"@material/radio": "^4.0.0",
"@material/ripple": "^4.0.0",
"@material/switch": "^4.0.0",
"@material/theme": "^4.0.0",
"@material/typography": "^4.0.0",
"@semantic-release/github": "^7.2.3",
"@semantic-release/npm": "^7.1.3",
"@semantic-release/release-notes-generator": "^9.0.2",
"@types/d3-array": "^1.2.8",
"@types/d3-scale": "^2.2.4",
"@types/d3-shape": "^1.3.5",
"@types/got": "^9.6.11",
"@types/humps": "^2.0.0",
"@types/jest": "^26.0.23",
"@types/lodash.mergewith": "^4.6.6",
"@types/minimatch": "^3.0.4",
"@types/prettier": "^2.2.3",
"@types/shelljs": "^0.8.8",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"async-retry": "^1.3.1",
"axios": "^0.21.1",
"bcryptjs": "^2.4.3",
"boxen": "^5.0.1",
"brotli-size": "^4.0.0",
"canvas": "2.8.0",
"codecov": "^3.8.2",
"conventional-changelog-cli": "^2.1.1",
"coveralls": "^3.1.0",
"crypto": "^1.0.1",
"cuid": "^2.1.8",
"d3-array": "^1.2.1",
"d3-scale": "^2.0.0",
"d3-shape": "^1.2.0",
"date-fns": "^2.22.1",
"dateformat": "^4.5.1",
"dayjs": "^1.10.5",
"dayjs-precise-range": "^1.0.1",
"del-cli": "4.0.1",
"dockerfile_lint": "0.3.4",
"dotenv": "^10.0.0",
"es6-promisify": "^7.0.0",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-github": "^4.1.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-spellcheck": "0.0.17",
"folio": "^0.3.18",
"form-data": "^4.0.0",
"fs-extra": "^10.0.0",
"functools-ts": "^1.0.3",
"github-url-parse": "^0.1.0",
"got": "^11.8.2",
"gradient-string": "^1.2.0",
"grommet": "^2.17.3",
"gzip-size": "^6.0.0",
"hasha": "5.2.2",
"http-errors": "^1.8.0",
"humanize-duration": "^3.27.0",
"humps": "^2.0.1",
"import-fresh": "^3.3.0",
"inversify": "^5.1.1",
"is-regex": "^1.1.3",
"jest": "^27.0.4",
"jest-circus": "^27.0.4",
"js-beautify": "^1.14.0",
"js-yaml": "^4.1.0",
"jsdom": "16.6.0",
"jsdom-global": "3.0.2",
"json-schemify": "0.0.10",
"json2yaml": "^1.1.0",
"jsonlint": "^1.6.3",
"jsonwebtoken": "^8.5.1",
"license-badger": "^0.19.0",
"license-checker": "^25.0.1",
"markdown-link-check": "^3.8.7",
"mime-types": "^2.1.31",
"minimatch": "^3.0.4",
"mkdirp": "^1.0.4",
"mobx": "^6.3.2",
"node-object-hash": "^2.3.7",
"object-hash": "^2.2.0",
"opener": "^1.5.2",
"ow": "^0.24.1",
"parse-json": "^5.2.0",
"path-type": "^4.0.0",
"prettier": "^2.1.2",
"pretty-quick": "^3.1.0",
"randomcolor": "^0.6.2",
"remark-cli": "^9.0.0",
"remark-html": "^13.0.1",
"remark-lint-code-block-style": "^2.0.1",
"remark-lint-ordered-list-marker-value": "^2.0.1",
"remark-preset-davidtheclark": "^0.12.0",
"remark-preset-lint-recommended": "^5.0.0",
"remark-validate-links": "^10.0.4",
"reshadow": "^0.0.1-alpha.80",
"rfdc": "^1.3.0",
"semantic-release": "^17.4.3",
"shelljs": "^0.8.4",
"slugify": "^1.5.3",
"styled-components": "^5.3.0",
"ts-jest": "^27.0.3",
"ts-node": "^10.0.0",
"tsdx": "^0.14.1",
"type-fest": "^0.20.2",
"typed-rest-client": "^1.8.4",
"typedoc": "^0.21.1",
"typedoc-plugin-markdown": "^3.10.2",
"typescript": "^4.3.2",
"typescript-object-utils": "^0.4.1",
"unzip-stream": "^0.3.1",
"util.promisify": "^1.1.1",
"utility-types": "^3.10.0",
"uuid": "^8.3.2",
"vague-time": "^2.4.2",
"winston": "^2.4.5",
"ws": "^7.4.3",
"xmldoc": "^1.1.2",
"xmldom": "^0.6.0",
"xpath": "0.0.32",
"yaml": "^1.10.2",
"yamljs": "^0.3.0",
"yaspeller": "^7.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AlexRogalskiy/typescript-tools.git"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">= 8.0.0"
},
"keywords": [
"typescript",
"tools",
"utilities",
"types"
],
"maintainers": [
{
"name": "Alexander Rogalskiy",
"email": "[email protected]"
}
],
"contributors": [
{
"name": "Alexander Rogalskiy",
"email": "[email protected]"
}
],
"release": {
"tagFormat": "v${version}",
"branches": [
"master",
{
"name": "develop",
"prerelease": true
}
],
"plugins": [
"@semantic-release/release-notes-generator",
[
"@semantic-release/npm",
{
"npmPublish": false,
"tarballDir": "dist",
"allowSameVersion": true
}
],
[
"@semantic-release/github",
{
"assets": "dist/*.tgz"
}
]
]
},
"bugs": {
"url": "https://github.com/AlexRogalskiy/typescript-tools/issues"
},
"homepage": "https://github.com/AlexRogalskiy/typescript-tools",
"author": {
"name": "Alexander Rogalskiy",
"url": "https://github.com/AlexRogalskiy"
},
"funding": "https://github.com/sponsors/AlexRogalskiy"
}