-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 902 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 902 Bytes
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
{
"name": "run-python-srcipt-action",
"version": "1.0.0",
"description": "",
"main": "index.mjs",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "node -e \"require('fs').rmSync('dist', { recursive: true, force: true })\"",
"build": "npm run clean && ncc build index.mjs -o dist --source-map && node -e \"require('fs').copyFileSync('util.py', 'dist/util.py')\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/jannekem/run-python-srcipt-action.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/jannekem/run-python-srcipt-action/issues"
},
"homepage": "https://github.com/jannekem/run-python-srcipt-action#readme",
"dependencies": {
"@actions/core": "^3.0.1",
"@actions/exec": "^3.0.0",
"tmp": "^0.2.5"
},
"devDependencies": {
"@vercel/ncc": "^0.38.4"
}
}