diff --git a/api/index.html b/api/index.html index 1fc9434..d043257 100644 --- a/api/index.html +++ b/api/index.html @@ -1,4 +1,4 @@ - + @@ -7,7 +7,7 @@ POGOserver api - + diff --git a/package.json b/package.json index 5fd090d..c385bc9 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "POGOServer", "version": "0.6.1", - "description": "Pokemon GO Server Emulator ", + "description": "", "repository": { "type": "git", "url": "git://github.com/maierfelix/POGOServer.git" @@ -20,23 +20,22 @@ "author": "Felix Maier", "license": "GNU GPL v3", "dependencies": { - "babel-cli": "^6.18.0", - "babel-preset-es2015": "^6.18.0", - "babel-preset-stage-0": "^6.16.0", + "babel-cli": "^6.11.4", + "babel-preset-es2015": "^6.13.1", + "babel-preset-stage-0": "^6.5.0", "directory-tree": "^1.1.1", "fs-extra": "^0.30.0", "jwt-decode": "^2.1.0", "mysql": "^2.11.1", "nodegit": "^0.16.0", - "node-pogo-protos": "^1.5.0", + "node-pogo-protos": "^1.4.0", "pcrypt": "git+https://github.com/laverdet/pcrypt.git", "pogo-asset-downloader": "^0.3.1", "pokerare": "^0.1.1", - "pokemongo-protobuf": "^1.12.0", + "pokemongo-protobuf": "^1.11.0", "prompt": "^1.0.0", "s2-geometry": "^1.2.9", "url": "^0.11.0" }, - "devDependencies": { - } + "devDependencies": {} } diff --git a/src/api.js b/src/api.js index 7c71b61..3fcac76 100644 --- a/src/api.js +++ b/src/api.js @@ -7,7 +7,9 @@ import Cell from "./models/World/Cell"; import print from "./print"; import CFG from "../cfg"; -import { getHashCodeFrom } from "./utils"; +import { + getHashCodeFrom +} from "./utils"; const S2Geo = s2.S2; diff --git a/src/index.js b/src/index.js index af3cf47..dc458ed 100644 --- a/src/index.js +++ b/src/index.js @@ -4,7 +4,12 @@ import request from "request"; import readline from "readline"; import POGOProtos from "pokemongo-protobuf"; -import { _toCC, deXOR, inherit, getHashCodeFrom } from "./utils"; +import { + _toCC, + deXOR, + inherit, + getHashCodeFrom +} from "./utils"; import print from "./print"; import CFG from "../cfg"; diff --git a/src/request.js b/src/request.js index f0d5233..83bc7fd 100644 --- a/src/request.js +++ b/src/request.js @@ -6,7 +6,11 @@ import POGOProtos from "pokemongo-protobuf"; import print from "./print"; import CFG from "../cfg"; -import { deXOR, validEmail, getHashCodeFrom } from "./utils"; +import { + deXOR, + validEmail, + getHashCodeFrom +} from "./utils"; /** * @param {Request} req diff --git a/src/response.js b/src/response.js index 5126150..f9e39f7 100644 --- a/src/response.js +++ b/src/response.js @@ -3,7 +3,9 @@ import POGOProtos from "pokemongo-protobuf"; import print from "./print"; import CFG from "../cfg"; -import { _toCC } from "./utils"; +import { + _toCC +} from "./utils"; /** * @param {Request} req diff --git a/src/setup.js b/src/setup.js index 55e9321..5bdde55 100644 --- a/src/setup.js +++ b/src/setup.js @@ -10,7 +10,11 @@ import * as shared from "./shared"; import GameMaster from "./models/GameMaster"; -import { _toCC, capitalize, idToPkmnBundleName } from "./utils"; +import { + _toCC, + capitalize, + idToPkmnBundleName +} from "./utils"; export function setup() {