-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.08 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.08 KB
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
{
"name": "@sylvainmetayer/telegram_bot",
"version": "0.6.0",
"description": "EPSI School Project - Telegram Bot",
"main": "src/index.js",
"scripts": {
"test": "NODE_ENV=test istanbul cover ./node_modules/mocha/bin/_mocha ./tests --use_strict --exit --report lcovonly -- -R spec",
"start": "NODE_ENV=development node src/index.js",
"production": "NODE_ENV=production node src/index.js",
"coverage": "codecov",
"lint": "standard",
"lint:fix": "standard --fix",
"test:dev": "NODE_ENV=test node mocha ./tests --use_strict --exit",
"single-test": "NODE_ENV=test node mocha $NAME --use_strict --exit",
"all-single-test": "for file in ./tests/*; do NAME=$file npm run single-test; if test $? -ne 0; then exit $?; fi; done"
},
"pre-commit": [
"lint"
],
"repository": {
"type": "git",
"url": "git+https://github.com/EPSIBordeaux/Telegram_Bot.git"
},
"keywords": [
"bot",
"telegram",
"epsi",
"school-project"
],
"author": "Sylvain METAYER <contact@sylvainmetayer.fr>",
"contributors": [
{
"email": "durade.romain@gmail.com",
"name": "Romain DURADE",
"url": "https://oriamn.com"
},
{
"email": "contact@sylvainmetayer.fr",
"name": "Sylvain METAYER",
"url": "https://sylvainmetayer.fr"
}
],
"maintainers": [
"Sylvain METAYER <contact@sylvainmetayer.fr> (https://sylvainmetayer.fr)",
"Romain DURADE <durade.romain@gmail.com> (https://oriamn.com)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/EPSIBordeaux/Telegram_Bot/issues"
},
"homepage": "https://github.com/EPSIBordeaux/Telegram_Bot#readme",
"dependencies": {
"bluebird": "^3.5.3",
"body-parser": "^1.18.3",
"dotenv": "^8.0.0",
"express": "^4.16.4",
"node-telegram-bot-api": "^0.30.0",
"nodemailer": "^6.0.0",
"vm2": "^3.6.6"
},
"devDependencies": {
"chai": "4.2.0",
"codecov": "3.5.0",
"istanbul": "0.4.5",
"mocha": "6.1.4",
"pre-commit": "1.2.2",
"standard": "12.0.1",
"telegram-test-api": "2.2.1"
},
"engines": {
"node": ">=6.0"
}
}