-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
86 lines (86 loc) · 2.24 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
{
"name": "galeforce",
"author": {
"name": "Brandon Cho",
"email": "[email protected]",
"url": "https://github.com/bcho04"
},
"description": "A customizable, promise-based, and command-oriented TypeScript library for the Riot Games API.",
"keywords": [
"galeforce",
"api",
"riot",
"lol",
"tft",
"lor",
"valorant",
"league of legends",
"teamfight tactics",
"legends of runeterra",
"riot games",
"data dragon",
"ddragon"
],
"homepage": "https://github.com/bcho04/galeforce",
"repository": {
"type": "git",
"url": "https://github.com/bcho04/galeforce.git"
},
"bugs": "https://github.com/bcho04/galeforce/issues",
"version": "0.6.1",
"license": "Apache-2.0",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"engines": {
"node": ">=14.0"
},
"dependencies": {
"ajv": "^8.12.0",
"axios": "^1.2.2",
"bottleneck": "^2.19.5",
"chalk": "^4.1.2",
"debug": "^4.3.4",
"lodash": "^4.17.21",
"redis": "^3.1.2",
"support-color": "^7.1.0",
"typescript-json-schema": "^0.55.0",
"uuid": "^9.0.0",
"yaml": "^2.2.1"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/debug": "^4.1.7",
"@types/lodash": "^4.14.191",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.18",
"@types/redis": "^2.8.32",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"eslint": "^8.31.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.4",
"mocha": "^10.2.0",
"nock": "^13.3.0",
"remark-cli": "^11.0.0",
"remark-lint": "^9.1.1",
"remark-preset-lint-recommended": "^6.1.2",
"typescript": "^4.9.4"
},
"scripts": {
"lint": "npx eslint --ext .ts,.tsx,.js,.jsx ./src ./scripts",
"lint:fix": "npx eslint --ext .ts,.tsx,.js,.jsx ./src ./scripts --fix",
"lint-md": "npx remark .",
"build": "npx tsc --project tsconfig.json",
"test": "mocha --exit",
"postinstall": "node ./scripts/postinstall.js",
"docs": "npx [email protected]"
},
"remarkConfig": {
"plugins": [
"remark-preset-lint-recommended"
]
}
}