-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathpackage.json
34 lines (34 loc) · 1.03 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
{
"name": "gitartwork",
"version": "1.0.0",
"description": "<p align=\"center\"><a href=\"https://github.com/jasineri/gitartwork\">gitartwork on user's contribution graph, make a SVG image of it and finally push it back to your repository</a> </p>",
"main": "dist/index.js",
"scripts": {
"prestart" : "npm run format && npm run build",
"start": "( node dist/index.js )",
"build": "tsc && ncc -m build lib/main.js",
"format": "prettier --write **/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jasineri/gitartwork.git"
},
"keywords": [],
"author": "jasineri",
"license": "ISC",
"bugs": {
"url": "https://github.com/jasineri/gitartwork/issues"
},
"homepage": "https://github.com/jasineri/gitartwork#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1"
},
"devDependencies": {
"@types/node": "^18.14.2",
"@vercel/ncc": "^0.36.1",
"node-html-parser": "^6.1.13",
"prettier": "^2.8.4",
"typescript": "^4.9.5"
}
}