-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.13 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.13 KB
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
{
"name": "fotmob",
"version": "1.0.3",
"description": "A JavaScript wrapper around the unofficial FotMob API",
"main": "dist/fotmob.js",
"types": "dist/fotmob.d.ts",
"scripts": {
"build": "rimraf dist && tsc",
"test": "jest --config=jest.config.js",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --fix --ext .ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bgrnwd/fotmob.git"
},
"keywords": [
"fotmob",
"soccer",
"api",
"football"
],
"author": "Brian Greenwood",
"license": "MIT",
"bugs": {
"url": "https://github.com/bgrnwd/fotmob/issues"
},
"homepage": "https://github.com/bgrnwd/fotmob#readme",
"dependencies": {
"got": "^11.8.1"
},
"devDependencies": {
"@types/jest": "^26.0.19",
"@typescript-eslint/eslint-plugin": "^4.11.0",
"@typescript-eslint/parser": "^4.11.0",
"eslint": "^7.16.0",
"eslint-config-prettier": "^8.0.0",
"jest": "^26.6.3",
"prettier": "2.3.0",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"typescript": "^4.1.2",
"@types/node": "^15.0.0"
},
"files": [
"dist/**/*"
]
}