This repository has been archived by the owner on Jan 17, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2 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
{
"name": "github-metrics",
"version": "2.0.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Alex Navasardyan <[email protected]>",
"license": "MIT",
"scripts": {
"build": "rm -rf dist *.tsbuildinfo && tsc",
"compile": "yarn build && ncc build dist/index.js --license licenses.txt",
"dev": "yarn build --watch --preserveWatchOutput",
"lint": "eslint src --ext ts",
"test": "jest tests",
"test:record-requests": "rm -rf tests/fixtures/__recordings__ && RECORD_REQUESTS=true yarn run test",
"api-report": "api-extractor run",
"api-docs": "api-documenter markdown -i temp -o docs",
"build-with-docs": "yarn build && yarn api-report && yarn api-docs"
},
"devDependencies": {
"@babel/core": "^7",
"@babel/preset-env": "^7.13.10",
"@babel/preset-typescript": "^7.26.0",
"@microsoft/api-documenter": "^7.12.9",
"@microsoft/api-extractor": "^7.48.1",
"@octokit/types": "^6.12.2",
"@pollyjs/adapter-fetch": "^5.1.0",
"@pollyjs/adapter-node-http": "^5.1.0",
"@pollyjs/core": "^5.1.0",
"@pollyjs/persister-fs": "^5.0.0",
"@types/debug": "^4.1.5",
"@types/fetch-mock": "^7.3.3",
"@types/har-format": "^1.2.5",
"@types/jest": "^26.0.20",
"@types/luxon": "^1.26.2",
"@types/node": "^15.0.1",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"eslint": "^7.21.0",
"fetch-mock": "^9.11.0",
"jest": "^26.6.3",
"setup-polly-jest": "^0.9.1",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
},
"dependencies": {
"@actions/core": "^1.2.6",
"@octokit/graphql": "^5.0.4",
"@octokit/rest": "^19.0.5",
"@octokit/plugin-retry": "^4.0.3",
"@slack/web-api": "^6.7.2",
"debug": "^4.3.1",
"luxon": "^1.26.0",
"yaml": "^1.10.2"
},
"resolutions": {
"is-plain-object": "^5.0.0"
},
"jest": {
"setupFilesAfterEnv": [
"./jest.setup.js"
]
},
"volta": {
"node": "22.13.0",
"yarn": "1.22.10"
}
}