-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
63 lines (63 loc) · 1.86 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "pokemongo-api",
"description": "Pokemon Go API",
"main": "dist/index.js",
"version": "0.0.0-semantically-release",
"scripts": {
"commit": "git-cz",
"compile": "babel -r babel-register -d dist/ src/",
"compile-example": "babel -r babel-register -d example-es5/ example/",
"prepublish": "npm run compile",
"example": "babel-node example/example.js",
"test-es5": "node example-es5/test.js",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/gallexme/pokemongo-api.git"
},
"author": "gallexme",
"license": "ISC",
"bugs": {
"url": "https://github.com/gallexme/pokemongo-api/issues"
},
"homepage": "https://github.com/gallexme/pokemongo-api#readme",
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-core": "^6.11.4",
"babel-plugin-transform-runtime": "^6.12.0",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"babel-project-relative-import": "^2.0.0",
"babel-register": "^6.11.6",
"commitizen": "^2.8.2",
"cz-conventional-changelog": "^1.1.6",
"semantic-release": "^4.3.5"
},
"dependencies": {
"babel-runtime": "^6.11.6",
"geocoder": "^0.2.2",
"geolib": "^2.0.21",
"gpsoauthnode": "0.0.5",
"lodash": "^4.13.1",
"long": "^3.2.0",
"moment": "^2.14.1",
"node-env-file": "^0.1.8",
"node-fetch": "^1.6.0",
"node-pogo-protos": "~1.5.0",
"node-pogo-signature": "^2.0.0",
"path": "^0.12.7",
"pokemon-go-pokedex": "github:biuni/PokemonGO-Pokedex",
"protobufjs": "^5.0.1",
"randgen": "^0.1.0",
"request": "^2.74.0",
"s2-geometry": "^1.2.6",
"socks5-https-client": "^1.1.3"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}