-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 838 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 838 Bytes
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
{
"name": "code-per-day",
"version": "1.0.1",
"description": "GitHub Action that generates beautiful SVG charts showing your daily code additions and deletions",
"main": "dist/index.js",
"scripts": {
"build": "ncc build src/index.js -o dist --source-map --license licenses.txt",
"test": "node src/test.js"
},
"keywords": ["github-action", "svg", "contributions", "code-stats"],
"author": "MPGE (https://github.com/mpge)",
"repository": {
"type": "git",
"url": "https://github.com/mpge/code-per-day.git"
},
"homepage": "https://github.com/mpge/code-per-day",
"bugs": {
"url": "https://github.com/mpge/code-per-day/issues"
},
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"@octokit/graphql": "^7.0.2"
},
"devDependencies": {
"@vercel/ncc": "^0.38.1"
}
}