-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 967 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
{
"name": "minecraft-slp",
"version": "0.2.1",
"description": "A NodeJS packet to get the Minecraft server list ping data",
"main": "dist/index.js",
"scripts": {
"start:dev": "ts-node src/index.ts",
"start": "node dist/index.js",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Falcort/minecraft-SLP.git"
},
"keywords": [
"minecraft"
],
"files": [
"dist"
],
"author": "SOUQUET Thibault",
"license": "LGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/Falcort/minecraft-SLP/issues"
},
"homepage": "https://github.com/Falcort/minecraft-SLP#readme",
"devDependencies": {
"@types/node": "^14.14.28",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"eslint": "^7.20.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.5"
}
}