-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.41 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": "bathrugby-bot",
"version": "1.0.0",
"description": "A Telegram Bot that answers questions about Bath Rugby fixtures using IBM Watson conversation API",
"main": "index.js",
"scripts": {
"coverage": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- tests/*",
"codacy": "./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- tests/* && cat ./coverage/lcov.info | ./node_modules/.bin/codacy-coverage && rm -rf ./coverage",
"test": "npm run test-unit",
"test-unit": "NODE_ENV=test mocha 'tests/**/*.js'",
"start": "node index.js"
},
"engines": {
"node": "6.5.0"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/bobbyshaw/bathrugby_bot.git"
},
"keywords": [
"telegram",
"bot",
"ibm",
"watson",
"bath",
"rugby"
],
"author": "Tom Robertshaw",
"license": "ISC",
"bugs": {
"url": "https://github.com/bobbyshaw/bathrugby_bot/issues"
},
"homepage": "https://github.com/bobbyshaw/bathrugby_bot#readme",
"dependencies": {
"dateformat": "1.0.12",
"dotenv": "2.0.0",
"node-telegram-bot-api": "0.23.3",
"numeral": "1.5.3",
"promise": "7.1.1",
"request-promise": "4.1.1",
"watson-developer-cloud": "2.2.0"
},
"devDependencies": {
"chai": "3.5.0",
"codacy-coverage": "2.0.0",
"istanbul": "0.4.5",
"mocha": "3.0.2",
"sinon": "1.17.5"
}
}