-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
42 lines (42 loc) · 965 Bytes
/
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
{
"name": "get-unity",
"description": "Command line tool for getting the download URL for the latest or specific version of Unity.",
"version": "2.0.0",
"main": "index.js",
"type": "module",
"bin": {
"get-unity": "bin/index.js"
},
"engines": {
"node": ">=20"
},
"license": "MIT",
"dependencies": {
"chalk": "5.3.0",
"jsdom": "25.0.0",
"meow": "13.2.0",
"read-pkg-up": "11.0.0",
"update-notifier": "7.3.0"
},
"scripts": {
"start": "node bin/index.js",
"test": "node --test lib/parsers.test.js",
"update": "node bin/index.js --force",
"postinstall": "npm run update"
},
"keywords": [
"unity"
],
"authors": [
{
"name": "Scott Doxey",
"email": "hello@scottdoxey.com",
"homepage": "http://scottdoxey.com/"
}
],
"homepage": "https://github.com/neogeek/get-unity",
"repository": {
"type": "git",
"url": "git://github.com/neogeek/get-unity.git"
}
}