-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 909 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 909 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
31
32
33
34
35
36
37
38
{
"name": "yggdrasil",
"version": "1.8.0",
"author": "Zeke Sonxx <zeke@zekesonxx.com>",
"description": "Mojang authentication (Yggdrasil) client",
"scripts": {
"test": "mocha -R spec",
"pretest": "npm run lint",
"lint": "standard",
"fix": "standard --fix"
},
"main": "./src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/PrismarineJS/node-yggdrasil.git"
},
"bugs": {
"url": "https://github.com/PrismarineJS/node-yggdrasil/issues"
},
"keywords": [
"minecraft",
"yggdrasil",
"authentication"
],
"dependencies": {
"node-fetch": "^2.6.1",
"uuid": "^10.0.0"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^25.5.0",
"@types/node-fetch": "^3.0.3",
"@types/uuid": "^10.0.0",
"mocha": "^11.7.5",
"nock": "^13.0.2",
"standard": "^17.0.0"
}
}