-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
package.json
36 lines (36 loc) · 1.16 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
{
"name": "metrics",
"version": "1.3.0",
"description": "Generate an user's GitHub metrics as SVG image format to embed somewhere else",
"main": "index.mjs",
"scripts": {
"start": "node index.mjs",
"build": "node utils/build.mjs",
"test": "echo \"Error: no test specified\" && exit 1",
"upgrade": "npm install @actions/core@latest @actions/github@latest @octokit/graphql@latest @octokit/rest@latest axios@latest express@latest express-rate-limit@latest image-to-base64@latest memory-cache@latest @vercel/ncc@latest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lowlighter/metrics.git"
},
"author": "lowlighter",
"license": "MIT",
"bugs": {
"url": "https://github.com/lowlighter/metrics/issues"
},
"homepage": "https://github.com/lowlighter/metrics#readme",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^4.0.0",
"@octokit/graphql": "^4.5.6",
"@octokit/rest": "^18.0.6",
"axios": "^0.20.0",
"express": "^4.17.1",
"express-rate-limit": "^5.1.3",
"image-to-base64": "^2.1.1",
"memory-cache": "^0.2.0"
},
"devDependencies": {
"@vercel/ncc": "^0.24.1"
}
}