forked from my-badges/my-badges
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.17 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
{
"name": "update-my-badges",
"version": "1.0.43",
"description": "Generate badges for your GitHub projects",
"type": "module",
"bin": {
"update-my-badges": "dist/main.js"
},
"scripts": {
"fmt": "prettier --write .",
"fmt:check": "prettier --check .",
"start": "tsc --watch",
"tsc": "tsc",
"build": "npm run copy-files && npm run tsc",
"copy-files": "copyfiles -u 1 src/**/*.graphql dist/",
"check-images": "node dist/check-images.js",
"test": "node test.js",
"release": "release-it"
},
"dependencies": {
"@octokit/plugin-retry": "^6.0.1",
"@octokit/plugin-throttling": "^8.0.0",
"minimist": "^1.2.8",
"octokit": "^3.1.1"
},
"devDependencies": {
"@octokit/graphql-schema": "^14.33.0",
"@types/minimist": "^1.2.3",
"@types/node": "^20.8.0",
"copyfiles": "^2.4.1",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
},
"files": [
"dist"
],
"prettier": {
"semi": false,
"singleQuote": true,
"endOfLine": "lf"
},
"repository": {
"type": "git",
"url": "git+https://github.com/my-badges/my-badges.git"
},
"author": "Anton Medvedev <anton@medv.io>",
"license": "MIT"
}