-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 2.18 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
{
"name": "resolve-team",
"version": "1.8.6",
"description": "Resolve NBA & NFL sports team names and information via fuzzy search",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "pkgroll",
"test": "jest",
"dev": "tsx ./src/index.ts",
"husky": "node ./node_modules/husky/lib/bin.js",
"release": "release-it"
},
"keywords": [
"nba",
"nfl",
"sports",
"resolve",
"team",
"sports team data",
"sports name finder",
"sports names",
"team name finder",
"team name resolver",
"sports teams"
],
"author": "fearandesire <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/fearandesire/resolve-team"
},
"license": "MIT",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"dependencies": {
"fuse.js": "^7.0.0"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@babel/preset-typescript": "^7.24.7",
"@biomejs/biome": "1.9.3",
"@tsconfig/node19": "^19.1.4",
"@tsconfig/recommended": "^1.0.7",
"@types/jest": "^29.5.13",
"@types/node": "^20.16.10",
"@typescript-eslint/eslint-plugin": "6.19.0",
"@typescript-eslint/parser": "6.19.0",
"babel-jest": "^29.7.0",
"eslint": "8.22.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"pkgroll": "^2.5.0",
"prettier": "^3.3.3",
"release-it": "^17.6.0",
"release-it-changelogen": "^0.1.0",
"ts-jest": "^29.2.5",
"tsx": "^4.19.1",
"typescript": "^5.6.2"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"globals": {
"'ts-jest'": {
"useESM": true
}
},
"moduleNameMapper": {
"^(\\..*)\\.js$": "$1"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
},
"packageManager": "[email protected]"
}