-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 887 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
{
"name": "testmc",
"version": "2.0.4",
"description": "GitHub Action to test Minecraft Plugins on a Server for a Specific Version",
"main": "src/index.js",
"type": "module",
"scripts": {
"test": "jest",
"test-server": "node tests/server/index.js",
"build": "ncc build"
},
"keywords": [],
"author": "gmitch215",
"license": "LGPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/gmitch215/TestMC.git"
},
"bugs": {
"url": "https://github.com/gmitch215/TestMC/issues"
},
"homepage": "https://github.com/gmitch215/TestMC#readme",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"glob": "^11.0.0",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"@babel/preset-env": "^7.26.0",
"@jest/globals": "^29.7.0",
"babel-jest": "^29.7.0",
"jest": "^29.7.0"
}
}