UNPKG

1.44 kBJSONView Raw
1{
2 "name": "@octokit/plugin-throttling",
3 "version": "2.7.0",
4 "publishConfig": {
5 "access": "public",
6 "tag": "latest"
7 },
8 "description": "Automatic rate limiting plugin for octokit",
9 "main": "lib/index.js",
10 "scripts": {
11 "coverage": "nyc report --reporter=html && open coverage/index.html",
12 "pretest": "standard",
13 "test": "nyc mocha test/integration/",
14 "update-endpoints": "npm-run-all update-endpoints:*",
15 "update-endpoints:fetch-json": "node scripts/update-endpoints/fetch-json",
16 "update-endpoints:code": "node scripts/update-endpoints/code"
17 },
18 "repository": {
19 "type": "git",
20 "url": "https://github.com/octokit/plugin-throttling.js.git"
21 },
22 "author": "Simon Grondin (http://github.com/SGrondin)",
23 "license": "MIT",
24 "bugs": {
25 "url": "https://github.com/octokit/plugin-throttling.js/issues"
26 },
27 "homepage": "https://github.com/octokit/plugin-throttling.js#readme",
28 "standard": {
29 "globals": [
30 "describe",
31 "before",
32 "beforeEach",
33 "afterEach",
34 "after",
35 "it",
36 "expect"
37 ]
38 },
39 "dependencies": {
40 "bottleneck": "^2.15.3"
41 },
42 "devDependencies": {
43 "@octokit/graphql": "^4.2.0",
44 "@octokit/request-error": "^1.0.2",
45 "@octokit/rest": "^16.3.0",
46 "chai": "^4.2.0",
47 "mocha": "^6.0.2",
48 "npm-run-all": "^4.1.5",
49 "nyc": "^14.0.0",
50 "semantic-release": "^15.13.25",
51 "standard": "^14.0.2"
52 }
53}