-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.32 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
{
"name": "scorekeepr",
"version": "0.4.0",
"description": "Library for baseball scorekeeping",
"files": [
"dist/**/*",
"retrosheet/**/*"
],
"types": "dist/index.d.ts",
"main": "dist",
"keywords": [
"baseball",
"retrosheet"
],
"repository": {
"type": "git",
"url": "https://github.com/burdell/scorekeepr.git"
},
"scripts": {
"test": "jest",
"coverage": "jest --coverage",
"typecheck": "tsc --noEmit --project tsconfig.core.json && tsc --noEmit --project tsconfig.test.json && tsc --noEmit --project tsconfig.retrosheet.json",
"build-core": "tsc --project tsconfig.core.json",
"build-retrosheet": "tsc --project tsconfig.retrosheet.json && npm run copy-retrosheet-index",
"build": "npm run build-core && npm run build-retrosheet",
"prepublish": "npm run test && npm run build",
"copy-retrosheet-index": "cp ./retrosheet_lib/** ./retrosheet",
"generate-docs": "typedoc lib/index.ts --tsconfig tsconfig.core.json --readme readme.md"
},
"author": "nathan griffin <nathanjgriffin@gmail.com>",
"license": "MIT",
"dependencies": {
"@reduxjs/toolkit": "^2.2.3",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.7",
"jest": "^29.7.0",
"retrosheet-parse": "^0.8.3",
"ts-jest": "^29.1.2",
"typedoc": "^0.25.13",
"typescript": "^5.4.4"
}
}