-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 1.91 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
{
"name": "sabichoso",
"version": "0.0.0-development",
"description": "Telegram bot to get information for different things (gas prices, movies, etc..)",
"main": "app.js",
"scripts": {
"test": "echo \"Error: need to add some tests!\" && exit 0",
"start": "node app.js",
"watch": "nodemon app.js",
"lint": "standard",
"lint:fix": "standard --fix",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once",
"commit": "git-cz",
"gas": "node jobs/gas.js",
"dolar": "node jobs/dolar.js",
"earthquake": "node jobs/earthquake.js",
"movies": "node jobs/movies.js",
"weather": "node jobs/weather.js"
},
"keywords": [
"telegram",
"bot",
"telegraf"
],
"author": "Máximo De León <[email protected]>",
"license": "MIT",
"dependencies": {
"axios": "0.18.0",
"cron": "1.4.1",
"dotenv": "6.0.0",
"memoizee": "0.4.13",
"mustache": "2.3.0",
"npm": "6.3.0",
"pdf2table": "0.0.2",
"puppeteer": "1.6.0",
"telegraf": "3.21.2",
"wikipediajs": "^1.4.0",
"xml2js": "0.4.19"
},
"devDependencies": {
"commitizen": "2.10.1",
"cz-conventional-changelog": "2.1.0",
"eslint": "5.2.0",
"eslint-config-standard": "11.0.0",
"eslint-plugin-import": "2.13.0",
"eslint-plugin-node": "7.0.1",
"eslint-plugin-prettier": "2.6.2",
"eslint-plugin-promise": "3.8.0",
"eslint-plugin-standard": "3.1.0",
"nodemon": "^1.18.3",
"prettier": "1.14.2",
"semantic-release": "^15.8.1",
"standard": "11.0.1",
"travis-deploy-once": "^5.0.1"
},
"prettier": {
"semi": false,
"singleQuote": true
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "https://github.com/maximodleon/sabichoso.git"
},
"release": {
"publish": [
"@semantic-release/github"
]
}
}