-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.11 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
{
"name": "leagueoflegends-api",
"version": "1.0.6",
"description": "Npm package for the official League of Legends API.",
"main": "index.js",
"scripts": {
"test-stats": "mocha --recursive -g Stats",
"test-summoner": "mocha --recursive -g Summoner",
"test-match": "mocha --recursive -g Match",
"test-league": "mocha --recursive -g League",
"test-games": "mocha --recursive -g Games",
"test-champion": "mocha --recursive -g Champion"
},
"repository": {
"type": "git",
"url": "git+https://github.com/corasan/leagueoflegends-node-api.git"
},
"keywords": [
"league",
"of",
"legends",
"sdk",
"javascript",
"api",
"development",
"lol"
],
"author": "Henry Paulino <henrypl360@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/corasan/leagueoflegends-node-api/issues"
},
"homepage": "https://github.com/corasan/leagueoflegends-node-api#readme",
"dependencies": {
"lodash": "^4.16.4",
"request": "^2.79.0",
"request-promise": "^4.1.1"
},
"devDependencies": {
"dotenv": "^2.0.0",
"mocha": "^3.1.2"
}
}