-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
153 lines (153 loc) · 5.26 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
{
"name": "@flex-development/dist-tag",
"description": "Distribution tag lookup utility",
"version": "3.0.0",
"keywords": [
"dist-tag",
"npm-dist-tag",
"npm-publish",
"typescript"
],
"license": "BSD-3-Clause",
"homepage": "https://github.com/flex-development/dist-tag",
"repository": {
"type": "git",
"url": "https://github.com/flex-development/dist-tag.git"
},
"bugs": {
"url": "https://github.com/flex-development/dist-tag/issues"
},
"author": {
"name": "Lexus Drumgold",
"url": "https://github.com/unicornware"
},
"publishConfig": {
"access": "public",
"directory": "./"
},
"type": "module",
"files": [
"dist",
"src"
],
"bin": "./dist/cli.mjs",
"exports": {
".": "./dist/index.mjs",
"./package.json": "./package.json"
},
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"scripts": {
"build": "mkbuild",
"check:ci": "yarn dedupe --check && yarn check:format && yarn check:lint && yarn check:spelling && yarn check:types && yarn check:types:build && yarn test:cov && NODE_ENV=production yarn pack -o %s-%v.tgz && yarn clean:pack",
"check:format": "prettier --check .",
"check:lint": "eslint --exit-on-fatal-error --ext cjs,cts,gql,json,jsonc,md,mjs,ts,yml --max-warnings 0 .",
"check:spelling": "cspell lint --color --no-progress --relative $@ \"**\"",
"check:types": "tsc -p tsconfig.json",
"check:types:build": "tsc -p tsconfig.build.json",
"check:upgrades": "yarn upgrade-interactive",
"clean:build": "trash ./{dist,*.tgz}",
"clean:modules": "trash ./.yarn/{cache,*.gz} ./node_modules",
"clean:pack": "trash ./*.tgz",
"clean:test": "trash ./coverage",
"conventional-changelog": "node --loader=./loader.mjs ./node_modules/.bin/conventional-changelog -n ./changelog.config.cts",
"dist-tag": "node --loader=./loader.mjs ./src/cli",
"fix:cg": "yarn fix:format && yarn fix:lint",
"fix:dedupe": "yarn dedupe --strategy=highest",
"fix:format": "prettier --write .",
"fix:lint": "yarn check:lint --fix",
"postinstall": "chmod +x .husky/* && husky install",
"postpack": "toggle-scripts +postinstall",
"postpublish": "toggle-scripts +prepack",
"prepack": "toggle-scripts -postinstall && yarn build",
"prepublishOnly": "toggle-scripts -prepack",
"recommended-bump": "conventional-recommended-bump --preset=conventionalcommits --tag-prefix=$(jq .tagPrefix package.json -r) --verbose",
"release": "bash ./scripts/release.sh",
"test": "vitest run",
"test:cov": "yarn test --coverage",
"test:watch": "vitest"
},
"devDependencies": {
"@commitlint/cli": "17.3.0",
"@commitlint/config-conventional": "17.3.0",
"@faker-js/faker": "7.6.0",
"@flex-development/mkbuild": "1.0.0-alpha.9",
"@flex-development/tutils": "5.0.0-dev.2",
"@graphql-eslint/eslint-plugin": "3.13.1",
"@jsdevtools/chai-exec": "2.1.1",
"@types/chai": "4.3.4",
"@types/conventional-changelog": "3.1.1",
"@types/conventional-changelog-config-spec": "2.1.2",
"@types/conventional-changelog-writer": "4.0.1",
"@types/conventional-commits-parser": "3.0.2",
"@types/conventional-recommended-bump": "6.1.0",
"@types/dateformat": "5.0.0",
"@types/eslint": "8.4.10",
"@types/git-raw-commits": "2.0.1",
"@types/is-ci": "3.0.0",
"@types/node-notifier": "8.0.2",
"@types/prettier": "2.7.1",
"@typescript-eslint/eslint-plugin": "5.44.0",
"@typescript-eslint/parser": "5.44.0",
"@vates/toggle-scripts": "1.0.0",
"@vitest/coverage-c8": "0.25.2",
"@vitest/ui": "0.25.2",
"c8": "7.12.0",
"chai": "4.3.7",
"conventional-changelog-cli": "2.2.2",
"conventional-recommended-bump": "6.1.0",
"cspell": "6.14.3",
"dotenv": "16.0.3",
"dotenv-expand": "9.0.0",
"eslint": "8.28.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-chai-expect": "3.0.0",
"eslint-plugin-jest-formatting": "3.1.0",
"eslint-plugin-jsdoc": "39.6.2",
"eslint-plugin-jsonc": "2.5.0",
"eslint-plugin-markdown": "3.0.0",
"eslint-plugin-markdownlint": "0.4.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-react": "7.31.11",
"eslint-plugin-unicorn": "45.0.0",
"eslint-plugin-yml": "1.2.0",
"graphql": "16.6.0",
"graphql-config": "4.3.6",
"growl": "1.10.5",
"husky": "8.0.2",
"is-ci": "3.0.1",
"jsonc-eslint-parser": "2.1.0",
"lint-staged": "13.0.3",
"node-notifier": "10.0.1",
"prettier": "2.7.1",
"prettier-plugin-sh": "0.12.8",
"pretty-format": "29.3.1",
"sade": "1.8.1",
"trash-cli": "5.0.0",
"ts-dedent": "2.2.0",
"ts-node": "10.9.1",
"tsconfig-paths": "4.1.0",
"typescript": "4.9.3",
"version-bump-prompt": "6.1.0",
"vite": "3.2.4",
"vite-tsconfig-paths": "3.6.0",
"vitest": "0.25.2",
"vitest-github-actions-reporter": "0.9.0",
"yaml-eslint-parser": "1.1.0"
},
"resolutions": {
"@ardatan/sync-fetch": "larsgw/sync-fetch#head=worker_threads",
"esbuild": "0.15.15",
"graphql-config": "4.3.6",
"typescript": "4.9.3"
},
"engines": {
"node": ">=14",
"yarn": "4.0.0-rc.14"
},
"packageManager": "[email protected]",
"readme": "README.md",
"tagPrefix": "dist-tag@"
}