forked from gigobyte/HLTV
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.3 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
{
"name": "hltv",
"version": "2.20.5",
"description": "The unofficial HLTV Node.js API",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"prepare": "npm run test && npm run build",
"build": "tsc",
"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.9",
"@types/jest": "^26.0.0",
"@types/request": "^2.47.1",
"@types/socket.io-client": "^1.4.32",
"jest": "^25.1.0",
"prettier": "^2.0.1",
"ts-jest": "^25.0.0",
"ts-node": "^9.0.0",
"typescript": "^3.5.2"
},
"dependencies": {
"cheerio": "^1.0.0-rc.2",
"request": "^2.88.0",
"socket.io-client": "^2.1.0"
}
}