-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (63 loc) · 1.39 KB
/
package.json
File metadata and controls
64 lines (63 loc) · 1.39 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "repoready",
"version": "1.0.0",
"description": "🚀 CLI tool to evaluate and create contributor-ready GitHub repositories",
"homepage": "https://github.com/OpenSource-Communities/RepoReady",
"repository": {
"type": "git",
"url": "https://github.com/OpenSource-Communities/RepoReady.git"
},
"bugs": {
"url": "https://github.com/OpenSource-Communities/RepoReady/issues"
},
"main": "dist/index.js",
"bin": {
"rr": "dist/index.js"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE",
"CONTRIBUTING.md"
],
"scripts": {
"build": "tsc",
"dev": "ts-node src/index.ts",
"start": "node dist/index.js",
"test": "jest",
"prepublishOnly": "npm run build",
"prepack": "npm run build"
},
"keywords": [
"cli",
"github",
"repository",
"maintainer",
"open-source",
"contributors",
"community",
"evaluation",
"best-practices",
"developer-tools"
],
"author": "OpenSource Communities",
"license": "MIT",
"dependencies": {
"@inquirer/prompts": "^3.3.0",
"@octokit/rest": "^20.0.2",
"chalk": "^4.1.2",
"cli-table3": "^0.6.3",
"commander": "^11.1.0",
"ora": "^5.4.1"
},
"devDependencies": {
"@types/jest": "^29.5.5",
"@types/node": "^20.8.0",
"jest": "^29.7.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=16.0.0"
}
}