forked from octokit/plugin-retry.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.26 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@octokit/plugin-retry",
"version": "0.0.0-development",
"publishConfig": {
"access": "public"
},
"description": "Automatic retry plugin for octokit",
"scripts": {
"build": "pika build",
"lint": "prettier --check '{src,test}/**/*' README.md package.json",
"lint:fix": "prettier --write '{src,test}/**/*' README.md package.json",
"pretest": "npm run -s lint",
"test": "jest --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/octokit/plugin-retry.js.git"
},
"author": "Simon Grondin (http://github.com/SGrondin)",
"license": "MIT",
"bugs": {
"url": "https://github.com/octokit/plugin-retry.js/issues"
},
"homepage": "https://github.com/octokit/plugin-retry.js#readme",
"dependencies": {
"@octokit/types": "^5.0.0",
"bottleneck": "^2.15.3"
},
"devDependencies": {
"@octokit/core": "^3.0.0",
"@octokit/request-error": "^2.0.0",
"@pika/pack": "^0.5.0",
"@pika/plugin-build-node": "^0.9.0",
"@pika/plugin-build-web": "^0.9.0",
"@pika/plugin-ts-standard-pkg": "^0.9.0",
"@types/fetch-mock": "^7.3.1",
"@types/jest": "^26.0.0",
"@types/node": "^14.0.0",
"fetch-mock": "^9.0.0",
"jest": "^26.0.1",
"prettier": "^2.0.1",
"semantic-release": "^17.0.0",
"semantic-release-plugin-update-version-in-files": "^1.0.0",
"ts-jest": "^26.0.0",
"typescript": "^3.7.2"
},
"jest": {
"preset": "ts-jest",
"coverageThreshold": {
"global": {
"statements": 98,
"branches": 85,
"functions": 100,
"lines": 98
}
}
},
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-ts-standard-pkg"
],
[
"@pika/plugin-build-node"
],
[
"@pika/plugin-build-web"
]
]
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github",
[
"@semantic-release/npm",
{
"pkgRoot": "./pkg"
}
],
[
"semantic-release-plugin-update-version-in-files",
{
"files": [
"pkg/dist-web/*",
"pkg/dist-node/*",
"pkg/*/version.*"
]
}
]
]
}
}