forked from junlarsen/league-connect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.19 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
{
"name": "league-connect",
"version": "5.3.0",
"description": "Module for consuming the League of Legends Client APIs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepublishOnly": "yarn compile",
"cert": "nugget https://static.developer.riotgames.com/docs/lol/riotgames.pem",
"compile": "yarn fmt && tsc && yarn cert",
"fmt": "prettier --config .prettierrc src/ jest.config.js --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/supergrecko/league-connect.git"
},
"author": "me@supergrecko.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/supergrecko/league-connect/issues"
},
"homepage": "https://github.com/supergrecko/league-connect#readme",
"dependencies": {
"@types/node-fetch": "^2.5.7",
"@types/ws": "^7.4.0",
"node-fetch": "^2.6.1",
"ws": "^7.4.0"
},
"devDependencies": {
"@types/jest": "^26.0.15",
"@types/node": "^14.14.7",
"jest": "^26.6.3",
"nugget": "^2.0.1",
"prettier": "^2.2.1",
"ts-jest": "^26.4.4",
"typescript": "^4.1.1-rc"
},
"keywords": [
"league of legends",
"league client apis",
"lcu",
"riot games"
]
}