-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 953 Bytes
/
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": "@jharrilim/balldontlie-client",
"version": "0.7.2",
"description": "js client for balldontlie api",
"homepage": "https://github.com/jharrilim/balldontlie-client",
"readme": "https://github.com/jharrilim/balldontlie-client/blob/master/README.md",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -p ./tsconfig.build.json",
"docs": "typedoc --out docs src && touch docs/.nojekyll",
"test": "jest"
},
"keywords": [
"ball",
"dont",
"lie",
"api",
"client"
],
"author": "Joseph Harrison-Lim",
"license": "GPL-3.0",
"devDependencies": {
"@types/jest": "^24.0.18",
"@types/node": "^12.7.5",
"jest": "^24.9.0",
"ts-jest": "^24.1.0",
"typedoc": "^0.15.0",
"typescript": "^3.6.3"
},
"dependencies": {
"axios": "^0.19.0"
},
"files": [
"dist",
"src",
"LICENSE"
],
"publishConfig": {
"access": "public"
}
}