-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.31 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.31 KB
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
{
"name": "@flex-development/jq-action",
"description": "A jq utility for GitHub Actions",
"version": "1.0.0",
"keywords": [
"actions",
"github",
"jq",
"json",
"query"
],
"license": "BSD-3-Clause",
"homepage": "https://github.com/flex-development/jq-action",
"repository": "https://github.com/flex-development/jq-action.git",
"bugs": "https://github.com/flex-development/jq-action/issues",
"author": {
"name": "Lexus Drumgold",
"url": "https://github.com/unicornware"
},
"type": "module",
"files": [
"CHANGELOG.md",
"LICENSE.md",
"README.md",
"action.yml"
],
"remarkConfig": {
"plugins": [
"@flex-development/remark-preset"
]
},
"scripts": {
"check:ci": "yarn dedupe --check && yarn check:format && yarn remark && yarn check:lint && yarn check:spelling",
"check:format": "dprint check --incremental=false",
"check:lint": "eslint --exit-on-fatal-error --max-warnings 0 .",
"check:spelling": "cspell lint --color --no-progress --relative $@ \"**\"",
"check:upgrades": "yarn upgrade-interactive",
"clean:modules": "trash ./.yarn/{cache,*.gz} ./node_modules",
"clean:pack": "trash \"./*.tgz\"",
"commitlint": "commitlint -V",
"fix:cg": "yarn fix:format && yarn fix:lint",
"fix:dedupe": "yarn dedupe --strategy=highest",
"fix:format": "dprint fmt",
"fix:lint": "yarn check:lint --cache --fix",
"postinstall": "[ -f ./node_modules/.bin/husky ] && chmod +x .husky/* && husky || exit 0",
"release": "bash ./scripts/release.sh",
"remark": "remark ."
},
"devDependencies": {
"@commitlint/cli": "20.1.0",
"@commitlint/types": "20.0.0",
"@flex-development/commitlint-config": "1.0.1",
"@flex-development/eslint-config": "1.1.1",
"@flex-development/grease": "3.0.0-alpha.9",
"@flex-development/remark-preset": "1.0.0",
"@tsconfig/strictest": "2.0.6",
"@types/unist": "3.0.3",
"cspell": "9.2.1",
"devlop": "1.1.0",
"dprint": "0.50.2",
"editorconfig": "3.0.1",
"eslint": "9.37.0",
"husky": "9.1.7",
"prettier": "3.6.2",
"remark": "15.0.1",
"remark-cli": "12.0.1",
"sh-syntax": "0.5.8",
"trash-cli": "6.0.0",
"ts-dedent": "2.2.0",
"typescript": "5.9.3",
"unified": "11.0.5",
"vfile": "6.0.3"
},
"packageManager": "yarn@4.9.4"
}