forked from gigobyte/HLTV
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.42 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
{
"name": "hltv",
"version": "3.3.2",
"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",
"pretty": "prettier --write \"**/*.ts\""
},
"repository": "git+https://github.com/gigobyte/HLTV.git",
"keywords": [
"hltv",
"api",
"crawler",
"parser",
"csgo"
],
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"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.29",
"@types/jest": "26.0.23",
"@types/random-useragent": "0.3.0",
"@types/request": "2.48.5",
"@types/socket.io-client": "1.4.36",
"@types/user-agents": "1.0.1",
"@types/uuid": "8.3.0",
"jest": "27.0.4",
"prettier": "2.3.1",
"ts-jest": "27.0.3",
"ts-node": "9.1.1",
"typescript": "4.3.4"
},
"dependencies": {
"cheerio": "1.0.0-rc.10",
"random-useragent": "0.5.0",
"request": "2.88.2",
"socket.io-client": "2.4.0",
"uuid": "8.3.2"
}
}