-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
63 lines (63 loc) · 1.9 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
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
{
"name": "mc-publish",
"version": "3.3.0",
"description": "GitHub Action that helps you publish your Minecraft mods",
"main": "src/index.ts",
"type": "module",
"scripts": {
"clean": "rimraf dist",
"generate": "ncc run scripts/generate.ts -t",
"strip": "ncc run scripts/strip.ts -t",
"prebuild": "npm run clean && npm run generate",
"build": "ncc build -m -s --license license.txt",
"postbuild": "npm run strip",
"test:lint": "eslint \"@(src|scripts)/**/*.ts\" && eslint --rule \"no-invalid-this: off\" tests/**/*.ts",
"test:unit": "jest --testPathPattern=unit --watchAll=false",
"test:integration": "jest --testPathPattern=integration --watchAll=false --passWithNoTests",
"test": "npm run test:lint && npm run test:unit && npm run test:integration"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kir-Antipov/mc-publish.git"
},
"keywords": [
"github",
"actions",
"minecraft",
"minecraft-mod",
"publish"
],
"author": "Kir-Antipov",
"license": "MIT",
"bugs": {
"url": "https://github.com/Kir-Antipov/mc-publish/issues"
},
"homepage": "https://github.com/Kir-Antipov/mc-publish#readme",
"devDependencies": {
"@babel/preset-env": "^7.23.8",
"@types/jest": "^29.5.11",
"@types/mock-fs": "^4.13.4",
"@types/node": "^16.18.31",
"@types/node-fetch": "^2.6.10",
"@types/semver": "^7.5.6",
"@types/yazl": "^2.4.5",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"@vercel/ncc": "^0.38.1",
"babel-jest": "^29.7.0",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"mock-fs": "^5.2.0",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3",
"yazl": "^2.5.1"
},
"dependencies": {
"fast-glob": "^3.3.2",
"node-fetch": "^3.3.2",
"node-stream-zip": "^1.15.0",
"semver": "^7.5.4",
"toml": "^3.0.0",
"yaml": "^2.3.4"
}
}