-
-
Notifications
You must be signed in to change notification settings - Fork 108
/
package.json
65 lines (65 loc) · 1.53 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
{
"name": "hltv",
"version": "3.5.0",
"description": "The unofficial HLTV Node.js API",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.release.json",
"start": "ts-node src/playground",
"test": "jest --runInBand",
"test:approve": "jest --runInBand --updateSnapshot",
"pretty": "prettier --write \"**/*.ts\""
},
"repository": "git+https://github.com/gigobyte/HLTV.git",
"keywords": [
"hltv",
"api",
"crawler",
"parser",
"csgo"
],
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"snapshotFormat": {
"escapeString": true,
"printBasicPrototype": true
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"author": "Stanislav Iliev",
"license": "ISC",
"bugs": {
"url": "https://github.com/gigobyte/HLTV/issues"
},
"homepage": "https://github.com/gigobyte/HLTV#readme",
"devDependencies": {
"@types/cheerio": "0.22.35",
"@types/jest": "29.5.14",
"@types/node": "18.19.64",
"@types/random-useragent": "0.3.3",
"@types/request": "2.48.12",
"@types/socket.io-client": "1.4.36",
"@types/user-agents": "1.0.4",
"jest": "29.7.0",
"prettier": "3.3.3",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"typescript": "5.6.3"
},
"dependencies": {
"cheerio": "1.0.0",
"got-scraping": "4.0.7",
"socket.io-client": "2.4.0"
}
}