-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.14 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
{
"private": true,
"name": "github-tools",
"version": "0.0.0",
"description": "GH tools for unified",
"license": "MIT",
"keywords": [],
"repository": "unifiedjs/github-tools",
"bugs": "https://github.com/unifiedjs/github-tools/issues",
"author": "Titus Wormer <[email protected]> (https://wooorm.com)",
"contributors": [
"Titus Wormer <[email protected]> (https://wooorm.com)"
],
"type": "module",
"main": "index.js",
"files": [
"lib/",
"config/",
"index.js"
],
"dependencies": {
"@octokit/graphql": "^8.0.0",
"@octokit/rest": "^21.0.0",
"@types/dlv": "^1.0.0",
"alpha-sort": "^5.0.0",
"arr-diff": "^4.0.0",
"atob": "^2.0.0",
"chalk": "^5.0.0",
"d3-color": "^3.0.0",
"d3-scale": "^4.0.0",
"dlv": "^1.0.0",
"js-yaml": "^4.0.0",
"minimatch": "^10.0.0",
"p-series": "^3.0.0",
"parse-author": "^2.0.0",
"trough": "^2.0.0"
},
"devDependencies": {
"@types/arr-diff": "^4.0.0",
"@types/atob": "^2.0.0",
"@types/d3-color": "^3.0.0",
"@types/d3-scale": "^4.0.0",
"@types/node": "^22.0.0",
"prettier": "^3.0.0",
"remark-cli": "^12.0.0",
"remark-preset-wooorm": "^10.0.0",
"type-coverage": "^2.0.0",
"typescript": "^5.0.0",
"xo": "^0.59.0"
},
"scripts": {
"start": "node --conditions development index.js",
"build": "tsc --build --clean && tsc --build && type-coverage",
"crawl": "node --conditions development script/crawl.js",
"format": "remark . -qfo && prettier . -w --log-level warn && xo --fix",
"test": "npm run build && npm run crawl && npm run format"
},
"prettier": {
"bracketSpacing": false,
"semi": false,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "none",
"useTabs": false
},
"remarkConfig": {
"plugins": [
"remark-preset-wooorm"
]
},
"typeCoverage": {
"atLeast": 100,
"detail": true,
"ignoreCatch": true,
"strict": true
},
"xo": {
"rules": {
"complexity": "off",
"no-await-in-loop": "off",
"unicorn/prefer-at": "off",
"unicorn/prefer-string-replace-all": "off"
},
"prettier": true
}
}