-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
41 lines (41 loc) · 987 Bytes
/
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
{
"name": "badgemaker",
"version": "1.0.0",
"description": "Telegram bot that makes Ingress badges",
"main": "index.js",
"scripts": {
"start": "node index.js",
"start-dev": "nodemon --exec node -r dotenv/config index.js",
"test": "standard",
"fix": "standard --fix"
},
"engines": {
"node": "10.13.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pedrofracassi/badgemaker.git"
},
"author": "Pedro Fracassi <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pedrofracassi/badgemaker/issues"
},
"homepage": "https://github.com/pedrofracassi/badgemaker#readme",
"keywords": [
"ingress",
"canvas",
"node-canvas",
"telegram"
],
"devDependencies": {
"dotenv": "^6.1.0",
"nodemon": "^1.18.6",
"standard": "^12.0.1"
},
"dependencies": {
"canvas": "^2.0.0-alpha.13",
"node-telegram-bot-api": "^0.30.0",
"rgbquant": "^1.1.2"
}
}