-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 766 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 766 Bytes
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
{
"name": "retrosheet-parse",
"version": "0.8.3",
"description": "",
"scripts": {
"test": "jest",
"coverage": "jest --coverage",
"start": "ts-node dev.ts",
"build": "tsc",
"prepublish": "npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/burdell/retrosheet-parse.git"
},
"files": [
"dist/**/*"
],
"types": "dist/index.d.ts",
"main": "dist/index.js",
"keywords": [
"baseball",
"retrosheet"
],
"author": "nathan griffin <nathanjgriffin@gmail.com>",
"license": "MIT",
"dependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.12.7",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.4"
}
}