-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.03 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
{
"name": "esportal-scraper",
"version": "1.0.0",
"description": "Pull Esportal profile data",
"main": "dist/index.cjs.js",
"typings": "dist/index.d.ts",
"module": "dist/index.esm.js",
"scripts": {
"test": "jest --coverage",
"build": "rimraf dist && rollup -c rollup.config.ts"
},
"keywords": [
"esportal",
"api",
"csgo",
"scraper"
],
"repository": {
"type": "git",
"url": "https://github.com/sruusk/esportal-scraper.git"
},
"homepage": "https://github.com/sruusk/esportal-scraper",
"author": "Apina-32",
"license": "MIT",
"dependencies": {
"@ulixee/commons": "^2.0.0-alpha.28",
"@ulixee/hero": "^2.0.0-alpha.28",
"@ulixee/net": "^2.0.0-alpha.28",
"chrono-node": "^2.7.5",
"debug": "^4.3.4",
"p-queue": "^6.6.2",
"steamid": "^2.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.5.0",
"@semantic-release/github": "^8.1.0",
"@semantic-release/npm": "^9.0.2",
"@types/debug": "^4.1.12",
"@types/jest": "^27.5.2",
"@types/node": "^16.18.95",
"@types/steamid": "^2.0.3",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@ulixee/hero-core": "^2.0.0-alpha.21",
"eslint": "8.22.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^26.9.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^27.5.1",
"prettier": "^2.8.8",
"rollup": "^2.79.1",
"rollup-plugin-sourcemaps": "^0.6.3",
"semantic-release": "^19.0.5",
"ts-jest": "^27.1.5",
"ts-node": "^10.9.2",
"typescript": "^4.9.5"
},
"peerDependencies": {
"@ulixee/hero-core": ">2.0.0-alpha <3"
},
"peerDependenciesMeta": {
"@ulixee/hero-core": {
"optional": true
}
},
"engines": {
"node": ">=16.0.0"
},
"files": [
"dist"
],
"release": {
"branches": [
"main"
]
}
}