UNPKG

1.28 kBJSONView Raw
1{
2 "name": "@octokit/plugin-throttling",
3 "version": "1.0.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 "coverage:upload": "nyc report --reporter=text-lcov | coveralls",
13 "pretest": "standard",
14 "test": "nyc mocha test/"
15 },
16 "repository": {
17 "type": "git",
18 "url": "https://github.com/octokit/plugin-throttling.js.git"
19 },
20 "author": "Simon Grondin (http://github.com/SGrondin)",
21 "license": "MIT",
22 "bugs": {
23 "url": "https://github.com/octokit/plugin-throttling.js/issues"
24 },
25 "homepage": "https://github.com/octokit/plugin-throttling.js#readme",
26 "standard": {
27 "globals": [
28 "describe",
29 "before",
30 "beforeEach",
31 "afterEach",
32 "after",
33 "it",
34 "expect"
35 ]
36 },
37 "dependencies": {
38 "bottleneck": "^2.14.1"
39 },
40 "devDependencies": {
41 "@octokit/request": "2.2.0",
42 "@octokit/rest": "^16.3.0",
43 "@octokit/routes": "16.1.1",
44 "chai": "^4.2.0",
45 "coveralls": "^3.0.2",
46 "mocha": "^5.2.0",
47 "nyc": "^13.1.0",
48 "semantic-release": "^15.13.1",
49 "standard": "^12.0.1"
50 }
51}