-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 918 Bytes
/
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": "mc-stats",
"version": "1.0.8",
"description": "Wrapper for fetching player stats from popular Minecraft networks.",
"author": "Robert (Discord: Robert#0006), Tj (Discord: Tj#0215)",
"license": "MIT",
"keywords": [
"minecraft",
"hypixel",
"wynncraft",
"hivemc",
"funcraft",
"blocksmc"
],
"repository": {
"type": "git",
"url": "git://github.com/treboryx/mc-stats.git"
},
"main": "app.js",
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"moment": "^2.29.4",
"moment-duration-format": "^2.3.2",
"node-fetch": "2.6"
},
"devDependencies": {
"eslint": "^8.24.0",
"husky": "^8.0.1",
"jest": "^29.1.2"
},
"scripts": {
"lint": "eslint --fix .",
"test": "node ./test",
"dev": "nodemon ./test"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
}
}