-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.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
{
"name": "league-api",
"version": "0.1.0",
"description": "",
"main": "src/index.js",
"scripts": {
"test": "mocha --recursive",
"lint": "eslint src/** test/** migrations/**"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maxjoehnk/league-api.git"
},
"keywords": [
"leagueoflegends",
"nodejs",
"api"
],
"author": "Max Jöhnk <maxjoehnk@gmail.com>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/maxjoehnk/league-api/issues"
},
"homepage": "https://github.com/maxjoehnk/league-api#readme",
"dependencies": {
"debug": "^3.1.0",
"fuse.js": "^3.2.1",
"knex": "^0.15.1",
"node-fetch": "^2.1.2",
"sqlite3": "^4.0.2"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"eslint": "^5.1.0",
"mocha": "^5.2.0",
"mockery": "^2.1.0",
"sinon": "^6.1.3",
"sinon-chai": "^3.2.0"
}
}