ghcrawler/package.json

42 строки
1022 B
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": {
2016-12-29 21:30:12 +03:00
"test": "./node_modules/mocha/bin/mocha test/**/*.js"
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",
2016-12-01 04:54:48 +03:00
"qlimit": "^0.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
}
2016-12-31 03:10:29 +03:00
}