-
Notifications
You must be signed in to change notification settings - Fork 59
/
package.json
91 lines (91 loc) · 2.13 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "hltv-api",
"version": "3.0.3",
"description": "API from Hltv.org",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=16"
},
"scripts": {
"report-coverage": "cat ./coverage/lcov.info | codecov",
"cover": "jest --coverage",
"lint": "eslint --ext js,ts,tsx ./src",
"format": "prettier --write '**/*.{ts,tsx}'",
"pretest": "npm run lint",
"test": "jest",
"test:w": "yarn test --watch",
"prebuild": "rimraf dist",
"build": "tsc -p .",
"build:w": "tsc -p . -w"
},
"files": [
"dist",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/dajk/hltv-api.git"
},
"keywords": [
"hltv.org",
"api",
"cs:go",
"csgo",
"Counter-Strike: Global Offensive",
"node",
"node.js",
"nodejs"
],
"author": {
"email": "[email protected]",
"name": "Radovan Hajdukovic",
"url": "https://www.radovanhajdukovic.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/dajk/hltv-api/issues"
},
"homepage": "https://github.com/dajk/hltv-api#readme",
"dependencies": {
"cheerio": "^1.0.0-rc.3",
"node-fetch": "^2.6.0",
"user-agents": "^1.0.1017",
"xml2js": "^0.4.23"
},
"devDependencies": {
"@types/cheerio": "^0.22.21",
"@types/jest": "^26.0.10",
"@types/node": "^14.6.0",
"@types/node-fetch": "^2.5.7",
"@types/user-agents": "^1.0.2",
"@types/xml2js": "^0.4.5",
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^4.1.0",
"codecov": "^3.7.2",
"eslint": "^7.7.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"jest": "^26.4.2",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"ts-jest": "^26.2.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix",
"git add"
]
}
}