-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 949 Bytes
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 949 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
45
{
"name": "@topdaily-dev/repomark",
"version": "0.2.0",
"description": "Score README and OSS repo health — badges, license, docs, package.json — from the terminal",
"type": "module",
"publishConfig": {
"access": "public"
},
"bin": {
"repomark": "bin/repomark.mjs"
},
"files": [
"bin",
"lib",
"README.md",
"LICENSE"
],
"scripts": {
"test": "node --test lib/*.test.mjs",
"prepublishOnly": "npm test"
},
"keywords": [
"readme",
"oss",
"repo-health",
"checklist",
"badges",
"cli",
"developer-tools",
"open-source"
],
"license": "MIT",
"author": "TopDaily Dev",
"repository": {
"type": "git",
"url": "git+https://github.com/topdaily-dev/repomark.git"
},
"homepage": "https://www.npmjs.com/package/@topdaily-dev/repomark",
"bugs": {
"url": "https://github.com/topdaily-dev/repomark/issues"
},
"engines": {
"node": ">=20"
}
}