ghcrawler/package.json

72 строки
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": {
2016-11-11 22:21:57 +03:00
"extend": "3.0.0",
2016-11-03 10:58:50 +03:00
"moment": "2.15.2",
2016-12-17 03:36:04 +03:00
"node-uuid": "^1.4.7",
2016-11-11 04:44:05 +03:00
"parse-link-header": "^0.4.1",
2016-11-08 19:04:58 +03:00
"q": "1.4.1",
2017-03-10 03:22:33 +03:00
"qlimit": "^0.1.1",
"amqp10": "noodlefrenzy/node-amqp10#issue295",
"amqplib": "^0.5.1",
"applicationinsights": "^0.17.0",
"azure-common": "github:geneh/azure-common",
"azure-sb": "geneh/azure-sb",
"azure-storage": "^1.3.2",
"body-parser": "^1.15.2",
"connect-redis": "^3.1.0",
"debug": "^2.6.1",
"express": "^4.14.0",
"express-init": "^1.1.0",
"express-joi": "^0.3.1",
"ghrequestor": "^0.1.6",
"htmlencode": "0.0.4",
"ip": "^1.1.4",
"memory-cache": "^0.1.6",
"mongodb": "2.2.11",
"morgan": "^1.7.0",
"painless-config": "^0.1.0",
"promise-retry": "1.1.1",
"redis": "2.6.3",
"redis-metrics": "^0.4.1",
"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": {
"chai": "^3.5.0",
"grunt": "^1.0.1",
"grunt-mocha-test": "^0.13.2",
2016-11-14 02:34:50 +03:00
"istanbul": "^0.4.5",
"mocha": "^3.1.2",
"sinon": "^1.17.6"
2016-11-01 09:01:54 +03:00
}
}