-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1 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
{
"name": "@irsooti/football-data-scraper",
"version": "1.1.1",
"description": "Scrape from the site https://www.football-data.co.uk",
"main": "build/index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watchAll",
"build": "npm run clean && node ./node_modules/.bin/tsc",
"clean": "npx rimraf build"
},
"types": "build/index.d.ts",
"author": "Daniele Irsuti",
"license": "ISC",
"devDependencies": {
"@types/jest": "^25.1.1",
"@types/jsdom": "^12.2.4",
"@types/node": "^13.5.3",
"@types/node-fetch": "^2.5.4",
"jest": "^25.1.0",
"np": "^5.2.1",
"rimraf": "^3.0.1",
"ts-jest": "^25.1.0",
"tslint": "^6.0.0",
"typescript": "^3.7.5"
},
"dependencies": {
"csv-parser": "^2.3.2",
"jsdom": "^16.0.1",
"node-fetch": "^2.6.0"
},
"repository": {
"type": "git",
"url": "https://github.com/irsooti/football-data-scraper.git"
},
"keywords": [
"scraper",
"football",
"soccer",
"football-data.co.uk"
]
}