-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.45 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
{
"name": "@sunsreddit/nba-stats",
"version": "1.0.2",
"description": "API wrapper for NBA Stats for Node.js.",
"main": "bin/index.mjs",
"type": "module",
"directories": {
"bin": "bin",
"config": "config",
"data": "data",
"doc": "docs",
"src": "src"
},
"scripts": {
"docs": "npx jsdoc -c jsdoc.json",
"lint": "npx eslint .",
"package": "sh ./scripts/npm_publish.sh",
"package:patch": "npm run package patch",
"package:minor": "npm run package minor",
"package:major": "npm run package major",
"start": "node .",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules npx jest --coverage --config jest.config.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sunsreddit/nba-stats.git"
},
"publishConfig": {
"@sunsreddit:registry": "https://npm.pkg.github.com/"
},
"keywords": [
"nba",
"stats",
"wrapper",
"api"
],
"author": "bruxc <bruxc@sunsreddit.net>",
"license": "MIT",
"bugs": {
"url": "https://github.com/sunsreddit/nba-stats/issues"
},
"homepage": "https://github.com/sunsreddit/nba-stats#readme",
"devDependencies": {
"@jest/globals": "^29.7.0",
"@typescript-eslint/parser": "^6.18.1",
"clean-jsdoc-theme": "^4.2.17",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"jsdoc": "^4.0.2"
},
"dependencies": {
"axios": "^1.6.5",
"jsonp": "^0.2.1",
"xmldom": "^0.6.0"
}
}