forked from pokemongo-dev-contrib/pokemongo-json-pokedex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.8 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "pokemongo-json-pokedex",
"version": "3.4.6",
"description": "This program transforms the data from the Pokemon GO master files to a better readable & processable JSON file.",
"main": "lib/index.js",
"scripts": {
"start": "ts-node -r tsconfig-paths/register src/app.ts",
"prestart:build": "npm run build",
"prepublish": "npm run update && npm run build",
"start:build": "node -r tsconfig-paths/register src/app.js",
"poststart:build": "npm run clean",
"clean": "rimraf {src,test}/**/*.{map,js} lib/*",
"build": "npm run clean && tsc",
"docs": "node_modules/.bin/typedoc --out docs src",
"lint": "tslint src/**/*.ts test/**/*.ts",
"generate-interfaces": "node bin/generate-interfaces.js",
"fetch-game-master": "git submodule foreach git pull origin master",
"fetch-assets": "node bin/get-latest-assets",
"update": "npm run fetch-game-master && npm run fetch-assets && npm run generate-interfaces",
"prepare": "npm run update",
"pretest": "npm run lint",
"test": "mocha --recursive --compilers ts:ts-node/register,ts:tsconfig-paths/register test/*.ts test/**/*.ts",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/pokemongo-dev-contrib/pokemongo-json-pokedex.git"
},
"keywords": [
"pokemongo",
"gamemaster"
],
"author": "Livio Brunner",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/pokemongo-dev-contrib/pokemongo-json-pokedex/issues"
},
"homepage": "https://github.com/pokemongo-dev-contrib/pokemongo-json-pokedex#readme",
"dependencies": {
"chai": "^4.2.0",
"chalk": "^2.4.1",
"csvtojson": "^2.0.8",
"es6-shim": "^0.35.4",
"fs-promise": "^2.0.3",
"left-pad": "^1.3.0",
"lodash": "^4.17.10",
"mkdirp": "^0.5.1",
"mocha": "^4.0.1",
"module-alias": "^2.1.0",
"p-iteration": "^1.1.7",
"request": "^2.88.0"
},
"devDependencies": {
"@semantic-release/commit-analyzer": "^6.1.0",
"@semantic-release/git": "^7.0.5",
"@semantic-release/release-notes-generator": "^7.1.3",
"@types/chai": "^4.1.7",
"@types/es6-shim": "^0.31.37",
"@types/lodash": "^4.14.117",
"@types/mocha": "^2.2.48",
"@types/node": "^8.10.36",
"json-to-ts": "^1.5.4",
"pokemongo-game-master": "^1.0.4",
"rimraf": "^2.6.1",
"semantic-release": "^15.10.6",
"ts-node": "^4.1.0",
"tsconfig-paths": "^2.7.3",
"tslint": "^5.11.0",
"typedoc": "^0.9.0",
"typescript": "^2.9.2"
},
"engines": {
"npm": "~4.4.4"
},
"_moduleAliases": {
"@core": "lib/core",
"@core/*": "lib/core/*",
"@util": "lib/util",
"@settings/app": "lib/app.settings",
"@settings/package": "package.json",
"@data": "lib/data",
"@outcome": "lib/outcome",
"@income": "lib/income"
}
}