UNPKG

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