2
0
mirror of https://github.com/yagop/node-telegram-bot-api synced 2025-08-30 13:58:27 +00:00
This commit is contained in:
yago 2015-06-29 21:52:38 +02:00
parent 814881a6c7
commit d030262da9

View File

@ -4,8 +4,8 @@
"description": "Telegram Bot API", "description": "Telegram Bot API",
"main": "index.js", "main": "index.js",
"directories": { "directories": {
"test": "test", "example": "examples",
"src": "src" "test": "test"
}, },
"keywords": [ "keywords": [
"telegram", "telegram",
@ -14,8 +14,8 @@
"bot" "bot"
], ],
"scripts": { "scripts": {
"test": "./node_modules/.bin/mocha test/index.js", "test": "mocha test/index.js",
"test-cov": "./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage" "test-cov": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
}, },
"author": "Yago Pérez <yagoperezs@gmail.com>", "author": "Yago Pérez <yagoperezs@gmail.com>",
"license": "MIT", "license": "MIT",
@ -30,5 +30,13 @@
"mocha": "^2.2.5", "mocha": "^2.2.5",
"mocha-lcov-reporter": "0.0.2", "mocha-lcov-reporter": "0.0.2",
"should": "^7.0.1" "should": "^7.0.1"
} },
"repository": {
"type": "git",
"url": "https://github.com/yagop/telegram-bot-api.git"
},
"bugs": {
"url": "https://github.com/yagop/telegram-bot-api/issues"
},
"homepage": "https://github.com/yagop/telegram-bot-api"
} }