-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
146 lines (146 loc) · 8.31 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
{
"name": "unified-utils-monorepo",
"version": "monorepo",
"private": true,
"homepage": "https://github.com/Xunnamius/unified-utils",
"repository": {
"type": "git",
"url": "https://github.com/Xunnamius/unified-utils",
"lens": "lib-esm"
},
"license": "MIT",
"workspaces": [
"packages/*"
],
"scripts": {
"__test:repeat:all": "echo 'Repeating test suite [initializing]...'; (i=0; while [ \"$((( i += 1 ) <= 100 ))\" -ne 0 ]; do sleep 0.1 && echo \"\\r\\033[1A\\033[0KRepeating test suite [run $i/100]...\" && JEST_SILENT_REPORTER_SHOW_WARNINGS=true NODE_ENV=test jest --reporters=jest-silent-reporter || exit; done) && echo \"All tests passed! Congrats!\"",
"__test:repeat:unit": "echo 'Repeating test suite [initializing]...'; (i=0; while [ \"$((( i += 1 ) <= 100 ))\" -ne 0 ]; do sleep 0.1 && echo \"\\r\\033[1A\\033[0KRepeating test suite [run $i/100]...\" && JEST_SILENT_REPORTER_SHOW_WARNINGS=true NODE_ENV=test jest --reporters=jest-silent-reporter --testPathIgnorePatterns test/integration-*.test.ts dist || exit; done) && echo \"All tests passed! Congrats!\"",
"clean": "git ls-files --exclude-standard --ignored --others --directory | grep -vE '^((\\.(env|vscode|husky))|next-env\\.d\\.ts|node_modules)($|\\/)' | xargs -p rm -rf",
"format": "MD_FILES=$(node -e 'console.log(require(`glob-gitignore`).sync(`**/*.md`, { ignore: require(`fs`).readFileSync(`.prettierignore`, `utf8`).split(`\n`).filter(Boolean), dot: true }).join(`\n`))') && (echo $MD_FILES | xargs remark --no-config --no-stdout --quiet --frail --use gfm --use lint-no-undefined-references || (echo -n '\u001b' && echo '[37;41;1m FAIL \u001b[0m cannot continue with undefined references present' && false)) && sort-package-json './package.json' './packages/*/package.json' && echo $MD_FILES | NODE_ENV=format xargs remark --output --frail && echo $MD_FILES | xargs doctoc --no-title --maxlevel 3 --update-only && prettier --write .",
"lint": "stdbuf -i0 -o0 -e0 tsc --project tsconfig.lint.json; X=$?; stdbuf -i0 -o0 -e0 eslint --parser-options=project:tsconfig.lint.json --no-error-on-unmatched-pattern packages src; Y=$?; MD_FILES=$(node -e 'console.log(require(`glob-gitignore`).sync(`**/*.md`, { ignore: require(`fs`).readFileSync(`.prettierignore`, `utf8`).split(`\n`).filter(Boolean), dot: true }).join(`\n`))') && echo $MD_FILES | NODE_ENV=lint xargs remark --quiet --frail --no-stdout; Z=$?; [ $X -eq 0 ] && [ $Y -eq 0 ] && [ $Z -eq 0 ]",
"lint:all": "stdbuf -i0 -o0 -e0 tsc --project tsconfig.eslint.json; X=$?; stdbuf -i0 -o0 -e0 eslint --parser-options=project:tsconfig.eslint.json .; Y=$?; MD_FILES=$(node -e 'console.log(require(`glob-gitignore`).sync(`**/*.md`, { ignore: require(`fs`).readFileSync(`.prettierignore`, `utf8`).split(`\n`).filter(Boolean), dot: true }).join(`\n`))') && echo $MD_FILES | NODE_ENV=lint xargs remark --quiet --frail --no-stdout; Z=$?; [ $X -eq 0 ] && [ $Y -eq 0 ] && [ $Z -eq 0 ]",
"list-tasks": "node -e 'console.log(Object.keys(require(\"./package.json\").scripts).join(\"\\n\"))' && npm run -ws list-tasks --if-present",
"prepare": "if [ -z \"$CI\" ] && ([ -z \"$NODE_ENV\" ] || [ \"$NODE_ENV\" = \"development\" ]); then husky install; if [ -r .husky/post-checkout ]; then .husky/post-checkout; fi; else echo 'skipped installing husky git hooks'; fi",
"test": "npm run test:unit --",
"test:all": "NODE_ENV=test jest --coverage",
"test:integration": "NODE_ENV=test jest --coverage 'integration-.*\\.test\\.ts.*'",
"test:repeat:all": "npm run __test:repeat:all --silent",
"test:repeat:unit": "npm run __test:repeat:unit --silent",
"test:unit": "NODE_ENV=test jest --coverage --testPathIgnorePatterns 'integration-.*\\.test\\.ts.*'"
},
"devDependencies": {
"@babel/cli": "^7.23.4",
"@babel/core": "^7.23.5",
"@babel/eslint-parser": "^7.23.3",
"@babel/plugin-proposal-export-default-from": "^7.23.3",
"@babel/plugin-syntax-import-assertions": "^7.23.3",
"@babel/plugin-syntax-typescript": "^7.23.3",
"@babel/preset-env": "^7.23.5",
"@babel/preset-typescript": "^7.23.3",
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/confusing-browser-globals": "^1.0.3",
"@types/jest": "^29.5.10",
"@types/node": "^20.10.2",
"@types/semver": "^7.5.6",
"@types/title": "^3.4.3",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"@xunnamius/conventional-changelog-projector": "^1.2.1",
"@xunnamius/jest-types": "^1.1.3",
"@xunnamius/types": "^1.3.0",
"all-contributors-cli": "^6.26.1",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"babel-plugin-add-import-extension": "^1.6.0",
"babel-plugin-explicit-exports-references": "^1.0.2",
"babel-plugin-module-resolver": "^5.0.0",
"babel-plugin-source-map-support": "^2.2.0",
"babel-plugin-transform-default-named-imports": "^1.2.2",
"babel-plugin-transform-rename-import": "^2.3.0",
"babel-plugin-transform-rewrite-imports": "^1.2.0",
"confusing-browser-globals": "^1.0.11",
"conventional-changelog-cli": "https://xunn.at/conventional-changelog-cli",
"doctoc": "^2.2.1",
"dotenv": "^16.3.1",
"eslint": "^8.55.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-babel-module": "^5.3.2",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-module-resolver": "^1.5.0",
"eslint-plugin-unicorn": "^49.0.0",
"execa": "^5.1.1",
"glob-gitignore": "^1.0.14",
"husky": "^8.0.3",
"jest": "29.7.0",
"jest-circus": "^29.7.0",
"jest-extended": "^4.0.2",
"lint-staged": "^15.1.0",
"named-app-errors": "^4.0.1",
"prettier": "^3.1.0",
"remark-capitalize-headings": "^1.0.3",
"remark-cli": "^12.0.0",
"remark-comment-config": "^8.0.0",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.0",
"remark-ignore": "^1.0.6",
"remark-lint": "^9.1.2",
"remark-lint-definition-case": "^3.1.2",
"remark-lint-fenced-code-flag": "^3.1.2",
"remark-lint-fenced-code-flag-case": "^1.0.4",
"remark-lint-file-extension": "^2.1.2",
"remark-lint-first-heading-level": "^3.1.2",
"remark-lint-heading-increment": "^3.1.2",
"remark-lint-heading-whitespace": "^1.0.0",
"remark-lint-heading-word-length": "^1.0.3",
"remark-lint-list-item-style": "^1.1.3",
"remark-lint-no-duplicate-defined-urls": "^2.1.2",
"remark-lint-no-duplicate-headings-in-section": "^3.1.2",
"remark-lint-no-empty-sections": "^4.0.0",
"remark-lint-no-empty-url": "^3.1.2",
"remark-lint-no-heading-like-paragraph": "^3.1.2",
"remark-lint-no-heading-punctuation": "^3.1.2",
"remark-lint-no-inline-padding": "^4.1.2",
"remark-lint-no-literal-urls": "^3.1.2",
"remark-lint-no-multiple-toplevel-headings": "^3.1.2",
"remark-lint-no-reference-like-url": "^3.1.2",
"remark-lint-no-shell-dollars": "^3.1.2",
"remark-lint-no-shortcut-reference-image": "^3.1.2",
"remark-lint-no-shortcut-reference-link": "^3.1.2",
"remark-lint-no-tabs": "^3.1.2",
"remark-lint-no-undefined-references": "^4.2.1",
"remark-lint-ordered-list-marker-value": "^3.1.2",
"remark-lint-strikethrough-marker": "^2.1.2",
"remark-lint-unordered-list-marker-style": "^3.1.2",
"remark-reference-links": "^7.0.0",
"remark-remove-comments": "^0.2.0",
"remark-remove-unused-definitions": "^1.0.4",
"remark-remove-url-trailing-slash": "^1.0.2",
"remark-renumber-references": "^1.0.5",
"remark-sort-definitions": "^1.0.5",
"remark-tight-comments": "^1.0.6",
"remark-validate-links": "^13.0.0",
"semantic-release": "https://xunn.at/[email protected]",
"simple-git": "^3.21.0",
"sort-package-json": "https://xunn.at/[email protected]",
"source-map-support": "^0.5.21",
"spellchecker": "^3.7.1",
"strip-ansi": "^7.1.0",
"text-extensions": "^2.4.0",
"to-vfile": "^8.0.0",
"toss-expression": "^0.1.2",
"tsconfig-replace-paths": "^0.0.14",
"type-fest": "^4.8.2",
"typedoc": "^0.25.4",
"typedoc-plugin-markdown": "^3.17.1",
"typescript": "5.3.2",
"unified": "^11.0.4",
"unique-filename": "^3.0.0",
"unist-util-visit": "^5.0.0"
}
}