forked from PrismarineJS/node-yggdrasil
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 911 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": "yggdrasil",
"version": "0.2.0",
"author": "Zeke Sonxx <[email protected]>",
"description": "Mojang authentication (Yggdrasil) client",
"scripts": {
"test": "node node_modules/mocha/bin/mocha -R spec",
"lint": "node node_modules/eslint/bin/eslint -f tap ."
},
"main": "./lib/index",
"repository": {
"type": "git",
"url": "https://github.com/zekesonxx/node-yggdrasil.git"
},
"bugs": {
"url": "https://github.com/zekesonxx/node-yggdrasil/issues"
},
"keywords": [
"minecraft",
"yggdrasil",
"authentication"
],
"dependencies": {
"request": "^2.79.0",
"uuid": "^3.0.1"
},
"license": "MIT",
"devDependencies": {
"eslint": "^3.14.0",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^2.0.1",
"mocha": "~1.18.0",
"nock": "~0.27.2",
"should": "~3.1.3"
}
}