-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.28 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
{
"name": "@zeepkist/combine",
"version": "1.0.0",
"license": "MIT",
"description": "Combines leaderboard data from the monthly Zeepkist Super League (ZSL) events into a single dataset per event",
"author": "James Harris <[email protected]>",
"homepage": "https://github.com/zeepkist/combine#readme",
"repository": "https://github.com/zeepkist/combine",
"bugs": {
"url": "https://github.com/zeepkist/combine/issues"
},
"funding": "https://github.com/sponsors/wopian",
"type": "module",
"main": "dist/index.js",
"bin": {
"super-league": "dist/cli.js"
},
"scripts": {
"dev": "tsx src/cli.ts -i data -o output",
"build": "tsc",
"lint": "eslint . --ext .js,.cjs,.mjs,.ts,.cts,.mts --fix --ignore-path .gitignore",
"lint:ci": "eslint . --ext .js,.cjs,.mjs,.ts,.cts,.mts --ignore-path .gitignore",
"test": "ava",
"coverage": "c8 ava"
},
"dependencies": {
"commander": "~12.1.0",
"csv-parse": "~5.6.0"
},
"devDependencies": {
"@ava/typescript": "~5.0.0",
"@rushstack/eslint-patch": "~1.10.0",
"@semantic-release/changelog": "~6.0.2",
"@semantic-release/commit-analyzer": "~13.0.0",
"@semantic-release/github": "~11.0.0",
"@semantic-release/npm": "~12.0.0",
"@semantic-release/release-notes-generator": "~14.0.0",
"@types/node": "~22.10.0",
"@typescript-eslint/eslint-plugin": "~6.21.0",
"@typescript-eslint/parser": "~6.21.0",
"ava": "~6.2.0",
"c8": "~10.1.0",
"eslint": "~8.57.0",
"eslint-config-prettier": "~9.1.0",
"eslint-plugin-import": "~2.31.0",
"eslint-plugin-prettier": "~5.2.0",
"eslint-plugin-simple-import-sort": "~10.0.0",
"eslint-plugin-unicorn": "~49.0.0",
"prettier": "~3.4.0",
"semantic-release": "~24.2.0",
"tsx": "~4.19.0",
"typescript": "~5.7.0"
},
"dependenciesMeta": {
"esbuild": {
"built": true
}
},
"ava": {
"utilizeParallelBuilds": true,
"typescript": {
"rewritePaths": {
"src/": "dist/"
},
"compile": "tsc"
}
},
"c8": {
"all": true,
"skipFull": true,
"src": [
"dist"
],
"reporter": [
"lcov",
"text",
"text-summary"
]
},
"renovate": {
"extends": [
"local>wopian/renovate-config"
]
},
"packageManager": "[email protected]"
}