-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.48 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.48 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "@dashlog/fetch-github-repositories",
"version": "3.0.2",
"description": "Fetch github repositories for a given user (or organization)",
"type": "module",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"test": "node --test ./test/**/*.spec.ts",
"coverage": "c8 -r html npm test",
"lint": "eslint src test"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public",
"provenance": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/dashlog/fetch-github-repositories.git"
},
"keywords": [
"retrieve",
"fetch",
"git",
"github",
"repositories",
"repo",
"repos",
"api",
"user",
"org",
"organization",
"list",
"api",
"request"
],
"files": [
"dist"
],
"author": "GENTILHOMME Thomas <gentilhomme.thomas@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dashlog/fetch-github-repositories/issues"
},
"homepage": "https://github.com/dashlog/fetch-github-repositories#readme",
"devDependencies": {
"@openally/config.eslint": "2.4.2",
"@openally/config.typescript": "^1.2.1",
"@types/http-link-header": "^1.0.7",
"@types/node": "25.6.0",
"c8": "^11.0.0",
"typescript": "6.0.2"
},
"dependencies": {
"combine-async-iterators": "^3.0.0",
"http-link-header": "^1.1.3",
"undici": "8.1.0"
}
}