-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.05 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.05 KB
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
{
"name": "minecraft-java-server-query",
"version": "1.0.7",
"description": "Module to gather basic information from a Minecraft Java server directly.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/*"
],
"scripts": {
"test": "jest --config jestconfig.json",
"build": "tsc",
"prettier": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/justcarlux/minecraft-java-server-query.git"
},
"keywords": [
"minecraft",
"query",
"servers"
],
"author": "justcarlux",
"license": "ISC",
"bugs": {
"url": "https://github.com/justcarlux/minecraft-java-server-query/issues"
},
"homepage": "https://github.com/justcarlux/minecraft-java-server-query#readme",
"devDependencies": {
"@types/jest": "^29.5.1",
"@types/node": "^18.16.3",
"jest": "^29.5.0",
"prettier": "^3.3.3",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4"
}
}