-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.23 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
{
"name": "hackintosh-pkg-cli",
"version": "1.0.9",
"description": "A CLI to help download the latest OpenCore Package and Kexts for your Hackintosh!",
"main": "index.js",
"scripts": {
"pkg-cli": "node index.js",
"patch-release": "npm version patch && npm publish && git push --follow-tags",
"minor-release": "npm version minor && npm publish && git push --follow-tags",
"major-release": "npm version major && npm publish && git push --follow-tags",
"test": "echo \"Error: no test specified\" && exit 1"
},
"bin": {
"hackintosh-pkg-cli": "index.js"
},
"bugs": {
"url": "https://github.com/shreyas1307/hackintosh-pkg-cli/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shreyas1307/hackintosh-pkg-cli.git"
},
"author": "Shreyas Balachandran",
"license": "MIT",
"dependencies": {
"@terascope/fetch-github-release": "^0.6.1",
"axios": "^0.19.2",
"chalk": "^4.0.0",
"clear": "^0.1.0",
"dotenv": "^8.2.0",
"downloads-folder": "^1.0.4",
"figlet": "^1.4.0",
"inquirer": "^7.1.0",
"ora": "^4.0.4",
"wget-improved": "^3.2.0"
}
}