-
-
Notifications
You must be signed in to change notification settings - Fork 175
/
package.json
109 lines (109 loc) · 2.8 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
{
"private": true,
"name": "franc",
"description": "Monorepo for franc packages",
"license": "MIT",
"repository": "https://github.com/wooorm/franc",
"bugs": "https://github.com/wooorm/franc/issues",
"author": "Titus Wormer <[email protected]> (http://wooorm.com)",
"type": "module",
"workspaces": [
"packages/franc",
"packages/franc-all",
"packages/franc-cli",
"packages/franc-min"
],
"devDependencies": {
"@types/mdast": "^4.0.0",
"@types/node": "^20.0.0",
"@types/parse-author": "^2.0.0",
"@unicode/unicode-15.0.0": "^1.0.0",
"alpha-sort": "^5.0.0",
"c8": "^9.0.0",
"hast-util-from-html": "^2.0.0",
"hast-util-select": "^6.0.0",
"hast-util-to-string": "^3.0.0",
"import-meta-resolve": "^4.0.0",
"is-hidden": "^2.0.0",
"iso-639-3": "^3.0.0",
"parse-author": "^2.0.0",
"prettier": "^3.0.0",
"remark-cli": "^12.0.0",
"remark-gfm": "^4.0.0",
"remark-lint-no-heading-punctuation": "^3.0.0",
"remark-lint-no-html": "^3.0.0",
"remark-lint-table-pipe-alignment": "^3.0.0",
"remark-preset-wooorm": "^9.0.0",
"remark-stringify": "^11.0.0",
"speakers": "^2.0.0",
"trigrams": "^5.0.0",
"type-coverage": "^2.0.0",
"type-fest": "^4.0.0",
"typescript": "^5.0.0",
"udhr": "^5.0.0",
"unified": "^11.0.0",
"xo": "^0.56.0"
},
"scripts": {
"generate": "node --conditions development script/build.js",
"build": "tsc --build --clean && tsc --build && type-coverage",
"format": "remark . -qfo && prettier . -w --log-level warn && xo --fix",
"test-api": "node --conditions development test/index.js",
"test-coverage": "c8 --check-coverage --100 --reporter lcov npm run test-api",
"test": "npm run generate && npm run build && npm run format && npm run test-coverage"
},
"prettier": {
"tabWidth": 2,
"useTabs": false,
"singleQuote": true,
"bracketSpacing": false,
"semi": false,
"trailingComma": "none"
},
"xo": {
"prettier": true,
"rules": {
"camelcase": "off",
"max-depth": "off",
"no-misleading-character-class": "off",
"unicorn/prefer-string-replace-all": "off"
}
},
"remarkConfig": {
"plugins": [
"remark-preset-wooorm",
[
"remark-preset-wooorm/node_modules/remark-gfm/index.js",
false
],
[
"remark-gfm",
{
"tablePipeAlign": false
}
],
[
"remark-lint-list-item-indent",
"space"
],
[
"remark-lint-table-pipe-alignment",
false
],
[
"remark-lint-no-html",
false
],
[
"remark-lint-no-heading-punctuation",
false
]
]
},
"typeCoverage": {
"atLeast": 100,
"detail": true,
"strict": true,
"ignoreCatch": true
}
}