ghcrawler/package.json

74 строки
2.0 KiB
JSON
Исходник Обычный вид История

2016-11-01 09:01:54 +03:00
{
"name": "ghcrawler",
2017-03-10 02:58:37 +03:00
"version": "0.2.23",
2016-11-01 09:01:54 +03:00
"description": "A robust GitHub API crawler that walks a queue of GitHub entities retrieving and storing their contents.",
2016-11-06 00:13:54 +03:00
"main": "./index.js",
2016-11-01 09:01:54 +03:00
"scripts": {
2017-03-10 03:29:43 +03:00
"start": "node ./bin/www.js",
"test": "./node_modules/mocha/bin/mocha test/unit/**/*.js",
"integration": "./node_modules/mocha/bin/mocha test/integration/**/*.js --timeout 20000"
2016-11-01 09:01:54 +03:00
},
"keywords": [
"github",
"api",
"crawler",
"pagination"
],
"author": "William Bartholomew <willbar@microsoft.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/microsoft/ghcrawler.git"
},
"homepage": "https://github.com/microsoft/ghcrawler#readme",
"bugs": {
"url": "https://github.com/microsoft/ghcrawler"
},
"dependencies": {
2017-03-10 03:22:33 +03:00
"amqp10": "noodlefrenzy/node-amqp10#issue295",
"amqplib": "^0.5.1",
"applicationinsights": "^0.17.0",
2018-07-31 20:10:50 +03:00
"azure-sb": "^0.10.6",
2017-03-10 03:22:33 +03:00
"azure-storage": "^1.3.2",
"body-parser": "^1.15.2",
"connect-redis": "^3.1.0",
"debug": "^2.6.1",
2018-12-12 23:33:19 +03:00
"express": "^4.16.4",
2017-03-10 03:22:33 +03:00
"express-init": "^1.1.0",
"express-joi": "^0.3.1",
2018-03-26 20:56:25 +03:00
"extend": "3.0.0",
2017-03-10 03:22:33 +03:00
"ghrequestor": "^0.1.6",
"htmlencode": "0.0.4",
"ip": "^1.1.4",
2018-07-31 20:10:50 +03:00
"memory-cache": "^0.2.0",
"moment": "^2.22.2",
2017-03-10 03:22:33 +03:00
"mongodb": "2.2.11",
2018-11-28 21:23:46 +03:00
"morgan": "^1.9.1",
2018-07-31 20:10:50 +03:00
"node-uuid": "^1.4.8",
"painless-config": "^0.1.1",
2018-03-26 20:56:25 +03:00
"parse-link-header": "^0.4.1",
2017-03-10 03:22:33 +03:00
"promise-retry": "1.1.1",
2018-07-31 20:10:50 +03:00
"q": "1.5.1",
2018-03-26 20:56:25 +03:00
"qlimit": "^0.1.1",
2017-03-10 03:22:33 +03:00
"redis": "2.6.3",
2018-07-31 20:10:50 +03:00
"redis-metrics": "^0.5.0",
2017-03-10 03:22:33 +03:00
"redis-rate-limiter": "jeffmcaffer/redis-rate-limiter",
"redlock": "2.0.1",
"refreshing-config": "^0.1.2",
"refreshing-config-redis": "^0.1.0",
"winston": "2.2.0",
"winston-azure-application-insights": "1.1.1"
2016-11-01 09:01:54 +03:00
},
2016-11-06 00:13:54 +03:00
"devDependencies": {
2018-07-31 20:10:50 +03:00
"chai": "^4.1.2",
"grunt": "^1.0.3",
"grunt-mocha-test": "^0.13.3",
2016-11-14 02:34:50 +03:00
"istanbul": "^0.4.5",
2018-07-31 20:10:50 +03:00
"mocha": "^5.2.0",
"sinon": "^1.17.6"
},
"optionalDependencies": {
"@google-cloud/storage": "^1.7.0"
2016-11-01 09:01:54 +03:00
}
}