-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.39 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
{
"name": "cognicity-reports-telegram-lambda",
"version": "1.1.0",
"description": "Telegram chatbot running on AWS lambda",
"main": "index.js",
"scripts": {
"lint": "eslint --fix src",
"mocha": "nyc mocha --compilers js:babel-core/register src/test/index",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"test": "npm run lint && npm run mocha",
"build": "./node_modules/.bin/babel src -d bin && cp src/lib/*.json bin/lib/"
},
"keywords": [
"bot",
"telegram",
"telegrambot"
],
"repository": {
"type": "git",
"url": "git+https://github.com/urbanriskmap/cognicity-reports-telegram-lambda.git"
},
"author": "Maanasa Priyaa",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/urbanriskmap/cognicity-reports-telegram-lambda/issues"
},
"dependencies": {
"@urbanriskmap/cognicity-bot-core": "1.1.3",
"axios": "^0.18.0",
"dotenv": "^6.0.0",
"joi": "^13.4.0",
"mocha-lcov-reporter": "^1.3.0",
"npm": "^6.1.0",
"request": "^2.87.0",
"telegraf": "^3.21.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-istanbul": "^4.1.6",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"coveralls": "^3.0.1",
"eslint": "^5.0.1",
"eslint-config-google": "^0.9.1",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"nyc": "^12.0.2",
"unit.js": "^2.0.0"
}
}