-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.03 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.03 KB
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
{
"name": "hubkit",
"version": "6.0.2",
"description": "GitHub API library for JavaScript, promise-based, for both NodeJS and the browser",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"lint": "eslint *.js",
"update": "yarn up -R '*' && yarn dedupe --strategy highest",
"latest": "yarn npm-check-updates -i -m --packageManager yarn --install never && yarn install",
"upgrade": "reviewable-upgrade"
},
"repository": "https://github.com/Reviewable/hubkit",
"keywords": [
"github",
"api",
"promise"
],
"author": "Piotr Kaminski <piotr@ideanest.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pkaminski/hubkit/issues"
},
"homepage": "https://github.com/pkaminski/hubkit",
"engines": {
"node": ">=14.0"
},
"packageManager": "yarn@4.13.0",
"dependencies": {
"axios": "^1.13.2",
"lru-cache": "11.x"
},
"devDependencies": {
"eslint": "^9.39.1",
"npm-check-updates": "^20.0.0",
"reviewable-configs": "Reviewable/reviewable-configs"
}
}