forked from mmomtchev/setup-swig
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.73 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.73 KB
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
{
"name": "setup-swig",
"version": "5.0.0",
"private": true,
"description": "GitHub action to download and setup SWIG",
"main": "dist/index.js",
"scripts": {
"prepare": "git log -1 --pretty='format:{ \"git\": \"%h\" }' > src/git.json && npx ncc build src/index.ts -m -o dist",
"test:jse:build:latest": "rm -rf install && mkdir -p install/tmp && RUNNER_TEMP=install/tmp RUNNER_TOOL_CACHE=install INPUT_BUILD=true INPUT_VERSION=latest INPUT_BRANCH=jse INPUT_CACHE=false INPUT_VERBOSE=true node dist/index.js && install/swig/swig-jse -version",
"test:jse:build:main": "rm -rf install && mkdir -p install/tmp && RUNNER_TEMP=install/tmp RUNNER_TOOL_CACHE=install INPUT_BUILD=true INPUT_VERSION=main INPUT_BRANCH=jse INPUT_CACHE=false INPUT_VERBOSE=true node dist/index.js && install/swig/swig-jse -version",
"test:jse:binary:latest": "rm -rf install && mkdir -p install/tmp && RUNNER_TEMP=install/tmp RUNNER_TOOL_CACHE=install INPUT_BUILD=false INPUT_VERSION=latest INPUT_BRANCH=jse INPUT_CACHE=false INPUT_VERBOSE=true node dist/index.js && install/swig/bin/swig-jse -version",
"test": "npm run test:jse:build:latest && npm test:jse:build:main && npm run test:jse:binary:latest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mmomtchev/setup-swig.git"
},
"keywords": [
"actions",
"setup",
"SWIG"
],
"author": "mmomtchev",
"license": "ISC",
"devDependencies": {
"@actions/cache": "^5.0.1",
"@actions/core": "^2.0.1",
"@actions/exec": "^2.0.0",
"@actions/io": "^2.0.0",
"@actions/tool-cache": "^2.0.2",
"@octokit/core": "^7.0.6",
"@types/node": "^25.0.3",
"@vercel/ncc": "^0.38.4",
"tar": "^7.5.2",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}