-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 808 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 808 Bytes
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
{
"name": "hypixel-api-tester",
"version": "0.1.0",
"description": "Emulates Hypixel API locally",
"main": "index.js",
"scripts": {
"test": "echo \"Running Test\" && node test.js ",
"update": "echo \"Updating endpoints...\" && node cli.js update",
"freshupdate": "node cli.js reinstall",
"updateconstant": "node cli.js updateconstant",
"partialupdate": "node cli.js updatesome",
"server": "node cli.js server",
"purge": "rm -rf endpoints/ && mkdir endpoints"
},
"keywords": [
"hypixel",
"minecraft"
],
"author": "ChiefChippy2",
"license": "ISC",
"dependencies": {
"express": "^4.17.1",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"@types/node-fetch": "^2.6.11",
"eslint": "^7.20.0",
"eslint-config-google": "^0.14.0"
}
}