-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 889 Bytes
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 889 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "@topdaily-dev/badgekit",
"version": "0.2.0",
"description": "Generate shields.io README badge rows from the terminal",
"type": "module",
"publishConfig": {
"access": "public"
},
"bin": {
"badgekit": "bin/badgekit.mjs"
},
"files": [
"bin",
"lib",
"README.md",
"LICENSE"
],
"scripts": {
"test": "node --test lib/*.test.mjs",
"prepublishOnly": "npm test"
},
"keywords": [
"readme",
"badges",
"shields",
"github",
"markdown",
"cli",
"developer-tools"
],
"license": "MIT",
"author": "TopDaily Dev",
"repository": {
"type": "git",
"url": "git+https://github.com/topdaily-dev/badgekit.git"
},
"homepage": "https://www.npmjs.com/package/@topdaily-dev/badgekit",
"bugs": {
"url": "https://github.com/topdaily-dev/badgekit/issues"
},
"engines": {
"node": ">=20"
}
}