-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.14 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.14 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "github-api-get",
"version": "0.4.5",
"description": "use github api",
"type": "module",
"exports": {
".": {
"types": "./githubApiGet.d.ts",
"module": "./githubApiGet.js",
"import": "./githubApiGet.js",
"default": "./githubApiGet.js"
},
"./package.json": "./package.json"
},
"types": "./githubApiGet.d.ts",
"files": [
"./githubApiGet.d.ts",
"./githubApiGet.ts",
"./decs.d.ts",
"./consts.ts",
"./githubApiGet.js",
"./consts.js",
"LICENSE",
"README.md"
],
"scripts": {
"alignNvmRc": "node -v > .nvmrc",
"compile": "tsc",
"prettier:help": "npx prettier --help",
"prettier:check": "npx prettier --check .",
"prettier:listdifferent": "npx prettier --list-different .",
"prettier:write": "npx prettier --write .",
"test:ava": "ava",
"test:ava:watch": "ava --watch",
"test:tsd": "tsd",
"test:nocoverage": "ava test.js",
"srccoverage:test": "c8 ava test.js",
"srccoverage:genreport": "c8 report --reporter html",
"srccoverage:showreport": "open-cli coverage/index.html",
"jsdoc:gen": "jsdoc -c jsdocconfig.json .",
"jsdoc:show": "open-cli jsdoc/index.html"
},
"devDependencies": {
"@ava/typescript": "^6.0.0",
"@tsconfig/node20": "^20.1.2",
"@types/node": "^25.0.6",
"ava": "^7.0.0",
"c8": "^11.0.0",
"jsdoc": "^4.0.2",
"open-cli": "^8.0.0",
"prettier": "^3.0.3",
"semantic-release": "^25.0.2",
"tsd": "^0.33.0",
"typescript": "^5.3.2"
},
"ava": {
"typescript": {
"rewritePaths": {
"src/": "build/"
},
"compile": false
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/roebi/github-api-get.git"
},
"keywords": [
"github-api",
"github-meta",
"github"
],
"author": "roebi",
"license": "MIT",
"bugs": {
"url": "https://github.com/roebi/github-api-get/issues"
},
"homepage": "https://github.com/roebi/github-api-get#readme",
"dependencies": {
"@actions/http-client": "^4.0.0",
"@types/jsonpath": "^0.2.4",
"jsonpath": "^1.2.0",
"node-fetch": "^3.3.2",
"undici": "^7.21.0"
}
}