forked from xpack-dev-tools/windows-build-tools-xpack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 3.65 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@xpack-dev-tools/windows-build-tools",
"version": "4.3.0-1.1",
"description": "A binary xPack with the Windows Build Tools executables.",
"main": "",
"scripts": {
"npm-install": "npm install",
"pack": "npm pack",
"version-patch": "npm version patch",
"version-minor": "npm version minor",
"postversion": "git push origin --all && git push origin --tags",
"git-log": "git log --pretty='%cd * %h %s' --date=short",
"test": "echo \"Error: no test specified\" && exit 1",
"liquidjs": "liquidjs"
},
"repository": {
"type": "git",
"url": "https://github.com/xpack-dev-tools/windows-build-tools-xpack.git/"
},
"bugs": {
"url": "https://github.com/xpack-dev-tools/windows-build-tools-xpack/issues/"
},
"homepage": "https://github.com/xpack-dev-tools/windows-build-tools-xpack#readme",
"keywords": [
"xpack",
"make",
"sh",
"build"
],
"author": {
"name": "Liviu Ionescu",
"email": "[email protected]",
"url": "https://github.com/ilg-ul/"
},
"license": "MIT",
"xpack": {
"minimumXpmRequired": "0.10.2",
"binaries": {
"destination": "./.content",
"baseUrl": "https://github.com/xpack-dev-tools/windows-build-tools-xpack/releases/download/v4.3.0-1",
"skip": 1,
"platforms": {
"linux-ia32": {
"skip": true
},
"linux-arm64": {
"skip": true
},
"linux-arm": {
"skip": true
},
"linux-x64": {
"skip": true
},
"darwin-x64": {
"skip": true
},
"win32-x64": {
"fileName": "xpack-windows-build-tools-4.3.0-1-win32-x64.zip",
"sha256": "9b636ff411b47c642a3d8a7e1d143acb71a11b4f8370d9f7dda8d9c848339806"
}
}
},
"bin": {
"make": "./.content/bin/make.exe",
"busybox": "./.content/bin/busybox.exe",
"echo": "./.content/bin/echo.exe",
"mkdir": "./.content/bin/mkdir.exe",
"rm": "./.content/bin/rm.exe",
"sh": "./.content/bin/sh.exe",
"cp": "./.content/bin/cp.exe"
},
"properties": {
"appName": "Windows Build Tools",
"appLCName": "windows-build-tools",
"platforms": "win32-x64",
"LIQUIDJS": "liquidjs '{ \"APP_NAME\": \"{{ properties.appName }}\", \"APP_LC_NAME\": \"{{ properties.appLCName }}\", \"platforms\": \"{{ properties.platforms }}\" }'"
},
"actions": {
"generate-workflows": [
"mkdir -p .github/workflows/",
"cp scripts/helper/templates/body-github-pre-releases-test.md .github/workflows/",
"cat scripts/helper/templates/build-liquid.yml | {{ properties.LIQUIDJS }} > .github/workflows/build-all.yml",
"cat scripts/helper/templates/test-prime-liquid.yml | {{ properties.LIQUIDJS }} > .github/workflows/test-prime.yml",
"cat scripts/helper/templates/publish-release-liquid.yml | {{ properties.LIQUIDJS }} > .github/workflows/publish-release.yml",
"cat scripts/helper/templates/test-xpm-liquid.yml | {{ properties.LIQUIDJS }} > .github/workflows/test-xpm.yml"
],
"trigger-workflow-build-all": "bash scripts/helper/trigger-workflow-build.sh",
"trigger-workflow-test-prime": "bash scripts/helper/tests/trigger-workflow-test-prime.sh",
"trigger-workflow-publish-release": "bash scripts/helper/trigger-workflow-publish-release.sh",
"generate-jekyll-post": "bash scripts/helper/generate-jekyll-post.sh",
"update-package-binaries": "bash scripts/helper/update-package-binaries.sh",
"trigger-workflow-test-xpm": "bash scripts/helper/tests/trigger-workflow-test-xpm.sh"
}
},
"bundleDependencies": [],
"devDependencies": {
"liquidjs": "^9.25.1"
}
}