-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
42 lines (42 loc) · 1.01 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
{
"name": "ogame-bot-api",
"version": "1.0.2",
"description": "Api to create a bot for ogame",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"build:watch": "tsc --watch",
"lint": "tslint -p .",
"lint:fix": "tslint --fix -p .",
"generate-docs": "typedoc --theme minimal --excludePrivate --out docs --mode library src/index.ts src/types.ts"
},
"author": "Noe Rivals",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/noeRls/ogame-bot-api.git"
},
"keywords": [
"ogame",
"bot",
"api"
],
"dependencies": {
"@types/node": "^13.13.0",
"@types/puppeteer": "^2.0.1",
"@types/yargs": "^15.0.4",
"axios": "^0.19.2",
"puppeteer": "^3.0.1",
"yargs": "^15.3.1"
},
"devDependencies": {
"tslint": "^6.1.1",
"typedoc": "^0.17.0-3",
"typescript": "^3.8.3"
},
"bin": {
"ogame-bot": "build/ogame-bot.js"
}
}