This repository has been archived by the owner on Dec 1, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
58 lines (58 loc) · 1.81 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
{
"name": "pokemongo-json-pokedex",
"version": "3.0.1",
"description": "This program transforms the data from the Pokemon GO master files to a better readable & processable JSON file.",
"main": "src/app.js",
"scripts": {
"prestart": "npm run lint",
"start": "ts-node -r tsconfig-paths/register src/app.ts",
"prestart:build": "npm run build",
"start:build": "node -r tsconfig-paths/register src/app.js",
"poststart:build": "npm run clean",
"clean": "rimraf {src,test}/**/*.{map,js}",
"build": "tsc",
"docs": "node_modules/.bin/typedoc --out docs src",
"lint": "tslint src/**/*.ts test/**/*.ts",
"fetch-game-master": "node bin/get-latest-game-master.js && node bin/generate-game-masterts.js",
"test": "node_modules/.bin/mocha --compilers ts:ts-node/register,ts:tsconfig-paths/register test/*.ts src/**/*.spec.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PokemonGOAPI/pokemongo-json-pokedex.git"
},
"keywords": [
"pokemongo",
"gamemaster"
],
"author": "Livio Brunner",
"license": "ISC",
"bugs": {
"url": "https://github.com/PokemonGOAPI/pokemongo-json-pokedex/issues"
},
"homepage": "https://github.com/PokemonGOAPI/pokemongo-json-pokedex#readme",
"dependencies": {
"chai": "^4.1.2",
"chalk": "^2.3.0",
"es6-shim": "^0.35.3",
"lodash": "^4.17.4",
"mocha": "^4.0.1"
},
"devDependencies": {
"@types/chai": "^4.0.4",
"@types/es6-shim": "^0.31.32",
"@types/lodash": "^4.14.58",
"@types/mocha": "^2.2.40",
"@types/node": "^8.0.46",
"json-to-ts": "^1.5.4",
"pokemongo-game-master": "^1.0.3",
"rimraf": "^2.6.1",
"ts-node": "^4.1.0",
"tsconfig-paths": "^2.1.2",
"tslint": "^5.1.0",
"typedoc": "^0.9.0",
"typescript": "^2.5.2"
},
"engines": {
"npm": "~4.4.4"
}
}