-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.57 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.57 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "enhanced-backend",
"version": "1.0.0",
"description": "Pokemon Go Enhanced",
"main": "./lib/server.js",
"dependencies": {
"bluebird": "^3.4.1",
"body-parser": "^1.15.2",
"cross-env": "^2.0.0",
"debug": "^2.2.0",
"express": "^4.14.0",
"haversine": "^1.0.0",
"is": "^3.1.0",
"lodash": "^4.13.1",
"morgan": "^1.7.0",
"object.observe": "^0.2.6",
"observed": "^1.1.2",
"pokemon-go-mitm": "rastapasta/pokemon-go-mitm-node#master",
"pokemongo-data": "github:pokemongo-enhanced/node-pokemongo-data",
"pokemongo-protobuf": "rastapasta/node-pokemongo-protobuf#master",
"randgen": "^0.1.0",
"request": "^2.74.0",
"serve-static": "^1.11.1",
"socket.io": "^1.4.8"
},
"devDependencies": {
"babel-eslint": "^6.1.2",
"coffee-script": "^1.10.0",
"eslint": "^3.1.1",
"eslint-config-airbnb-base": "^5.0.0",
"eslint-plugin-import": "^1.12.0",
"eslint-plugin-promise": "^2.0.0",
"nodemon": "^1.10.0"
},
"scripts": {
"test": "npm run lint",
"lint": "eslint ./lib",
"dev": "cross-env DEBUG=mitm:*,enhanced:* nodemon ./lib/main.js",
"start": "cross-env NODE_ENV=production node ./lib/main.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rubenvereecken/PokemonGo-Enhanced.git"
},
"keywords": [
"pokemon",
"go",
"enhanced",
"mitm"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/rubenvereecken/PokemonGo-Enhanced/issues"
},
"homepage": "https://github.com/rubenvereecken/PokemonGo-Enhanced#readme"
}