-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 3.45 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 3.45 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "prettier-plugin-asciidoc",
"version": "0.0.1",
"description": "Prettier plugin for formatting AsciiDoc files",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/oxidecomputer/prettier-plugin-asciidoc.git"
},
"bugs": {
"url": "https://github.com/oxidecomputer/prettier-plugin-asciidoc/issues"
},
"keywords": [
"prettier",
"prettier-plugin",
"asciidoc",
"formatter"
],
"files": [
"dist"
],
"scripts": {
"build": "bun scripts/build.ts",
"prepublishOnly": "bun run build",
"lint": "eslint . --max-warnings=0",
"test": "vitest run",
"test:deep-tiers": "bun scripts/test-deep-tiers.ts",
"test:batched-sweeps": "bun scripts/test-deep-tiers.ts --batched",
"check": "tsc --noEmit",
"vendor": "bun scripts/vendor.ts",
"fmt": "prettier --write .",
"fmt:check": "prettier --check .",
"coverage": "bun scripts/score-minimums.ts --coverage",
"metrics": "bun scripts/metrics.ts",
"gates": "bun run fmt && bun run check && bun run lint && bun run test && bun run build && bun run metrics && bun run coverage && bun run block-structure && bun run citation-check && bun run internal-citations && bun run parse-print-addresses && bun run printer-reads",
"parity": "bun scripts/parity.ts",
"reading-ledger": "bun scripts/reading-ledger.ts",
"reparse-ledger": "bun scripts/reparse-ledger.ts",
"shape-diff": "bun scripts/shape-diff.ts",
"mutate": "bun run test:deep-tiers && bun run build && stryker run && bun scripts/score-minimums.ts --mutation",
"mutate:full": "bun run test:deep-tiers && bun run build && stryker run --force && bun scripts/score-minimums.ts --mutation",
"triage": "bun scripts/conformance-triage.ts",
"registry-sweep-triage": "bun scripts/registry-sweep-triage.ts",
"inline-sweep-triage": "bun scripts/inline-sweep-triage.ts",
"reflow-line-sweep-triage": "bun scripts/reflow-line-sweep-triage.ts",
"citation-check": "bun scripts/citation-check.ts",
"internal-citations": "bun scripts/internal-citations.ts",
"printer-reads": "bun scripts/printer-reads.ts",
"block-structure": "bun scripts/block-structure.ts",
"local-docs": "bun scripts/local-documents.ts",
"collect-local-docs": "bun scripts/collect-local-documents.ts",
"whitespace-battery": "bun scripts/whitespace-battery.ts",
"reference-diff": "bun scripts/reference-diff.ts",
"parse-print-addresses": "bun scripts/parse-print-addresses.ts",
"deletion-gate": "bun scripts/deletion-gate.ts"
},
"peerDependencies": {
"prettier": "^3.0.0"
},
"devDependencies": {
"@asciidoctor/core": "4.0.11",
"@eslint/js": "^10.0.1",
"@stryker-mutator/core": "^10.0.0",
"@stryker-mutator/vitest-runner": "^10.0.0",
"@types/bun": "^1.3.9",
"@vitest/coverage-v8": "4.0.18",
"@vitest/eslint-plugin": "^1.6.9",
"dependency-cruiser": "^18.2.0",
"eslint": "^10.0.1",
"eslint-config-love": "^151.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsdoc": "^62.7.0",
"eslint-plugin-sonarjs": "4.2.0",
"eslint-plugin-unicorn": "^63.0.0",
"jscpd": "^5.1.2",
"knip": "^6.32.2",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.0",
"vitest": "^4.0.18"
},
"license": "MPL-2.0"
}