2022-06-13 17:42:15 +00:00
|
|
|
{
|
|
|
|
"name": "install-nextflow-action",
|
2024-03-01 01:08:28 +00:00
|
|
|
"version": "2.0.0",
|
2022-11-13 04:16:16 +00:00
|
|
|
"description": "An action to install Nextflow into a GitHub Actions workflow and make it available for subsequent steps.",
|
2022-11-13 22:47:47 +00:00
|
|
|
"main": "lib/src/main.js",
|
2022-06-13 17:42:15 +00:00
|
|
|
"scripts": {
|
2022-11-13 04:16:53 +00:00
|
|
|
"build": "tsc",
|
2022-11-13 22:08:42 +00:00
|
|
|
"format": "prettier --write '**/*.{ts,js,yml,md,json}'",
|
|
|
|
"format:check": "prettier --check '**/*.{ts,js,yml,md,json}'",
|
|
|
|
"lint": "eslint {src,test}/**/*.ts",
|
|
|
|
"lint:fix": "eslint --fix {src,test}/**/*.ts",
|
2022-11-13 04:16:53 +00:00
|
|
|
"package": "ncc build --source-map --license LICENSE",
|
2023-10-26 03:29:44 +00:00
|
|
|
"test": "c8 --reporter=lcov ava",
|
2024-02-03 03:24:46 +00:00
|
|
|
"all": "npm run build && npm run format && npm run lint && npm run package && npm test",
|
|
|
|
"prepare": "husky && husky install"
|
2022-06-13 17:42:15 +00:00
|
|
|
},
|
2022-11-13 04:16:16 +00:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/nf-core/setup-nextflow.git"
|
|
|
|
},
|
2022-11-13 05:27:57 +00:00
|
|
|
"keywords": [
|
|
|
|
"actions",
|
|
|
|
"node",
|
|
|
|
"setup"
|
|
|
|
],
|
2022-11-13 04:08:24 +00:00
|
|
|
"author": "nf-core",
|
2022-11-13 04:43:43 +00:00
|
|
|
"ava": {
|
2022-11-13 05:27:57 +00:00
|
|
|
"extensions": [
|
|
|
|
"ts"
|
|
|
|
],
|
2024-02-03 03:00:45 +00:00
|
|
|
"environmentVariables": {
|
|
|
|
"RUNNER_TEMP": "./.tmp"
|
|
|
|
},
|
2022-11-13 04:43:43 +00:00
|
|
|
"rewritePaths": {
|
|
|
|
"src/": "lib/"
|
|
|
|
},
|
2022-11-13 05:27:57 +00:00
|
|
|
"require": [
|
|
|
|
"ts-node/register/transpile-only"
|
|
|
|
],
|
|
|
|
"files": [
|
2022-11-14 03:22:12 +00:00
|
|
|
"test/**/*.ts",
|
|
|
|
"!test/utils.ts"
|
2022-11-13 05:27:57 +00:00
|
|
|
],
|
|
|
|
"source": [
|
|
|
|
"src/**/*.ts"
|
|
|
|
],
|
2022-11-13 04:43:43 +00:00
|
|
|
"concurrency": 1,
|
|
|
|
"serial": true,
|
2024-03-01 01:03:36 +00:00
|
|
|
"powerAssert": true,
|
|
|
|
"timeout": "120s"
|
2022-11-13 04:43:43 +00:00
|
|
|
},
|
2022-06-13 22:01:32 +00:00
|
|
|
"license": "MIT",
|
2022-06-13 17:42:15 +00:00
|
|
|
"dependencies": {
|
|
|
|
"@actions/core": "^1.8.2",
|
2022-06-13 21:38:31 +00:00
|
|
|
"@actions/exec": "^1.1.1",
|
2024-01-15 03:07:18 +00:00
|
|
|
"@actions/github": "^6.0.0",
|
2022-06-13 17:42:15 +00:00
|
|
|
"@actions/tool-cache": "^2.0.1",
|
2024-02-29 23:19:07 +00:00
|
|
|
"@types/node": "^20.0.0",
|
2022-06-13 17:42:15 +00:00
|
|
|
"async-retry": "^1.3.3",
|
|
|
|
"semver": "^7.3.7"
|
2022-06-15 16:27:46 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2024-05-13 00:49:01 +00:00
|
|
|
"@ava/typescript": "5.0.0",
|
2024-04-08 00:27:59 +00:00
|
|
|
"@tsconfig/node16": "16.1.3",
|
2024-10-05 03:50:14 +00:00
|
|
|
"@types/async-retry": "1.4.9",
|
2024-10-17 02:19:22 +00:00
|
|
|
"@types/node": "20.16.12",
|
2024-02-29 23:23:32 +00:00
|
|
|
"@types/semver": "7.5.8",
|
2024-07-29 19:03:37 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "7.18.0",
|
|
|
|
"@typescript-eslint/parser": "7.18.0",
|
2024-10-03 19:02:53 +00:00
|
|
|
"@vercel/ncc": "0.38.2",
|
2024-05-06 01:35:53 +00:00
|
|
|
"ava": "6.1.3",
|
2024-06-17 00:50:06 +00:00
|
|
|
"c8": "10.1.2",
|
2024-09-23 00:03:26 +00:00
|
|
|
"eslint": "8.57.1",
|
2024-03-01 00:11:13 +00:00
|
|
|
"eslint-config-prettier": "9.1.0",
|
2024-03-01 00:03:25 +00:00
|
|
|
"eslint-plugin-ava": "14.0.0",
|
2024-09-16 01:29:00 +00:00
|
|
|
"eslint-plugin-github": "5.0.2",
|
2024-07-15 01:41:47 +00:00
|
|
|
"eslint-plugin-simple-import-sort": "12.1.1",
|
2024-09-23 17:39:56 +00:00
|
|
|
"husky": "9.1.6",
|
2024-09-02 00:28:51 +00:00
|
|
|
"lint-staged": "15.2.10",
|
2024-07-15 01:41:58 +00:00
|
|
|
"prettier": "3.3.3",
|
2024-03-01 00:01:49 +00:00
|
|
|
"ts-node": "10.9.2",
|
2024-10-09 09:49:13 +00:00
|
|
|
"typescript": "5.6.3"
|
2024-02-03 03:24:46 +00:00
|
|
|
},
|
|
|
|
"lint-staged": {
|
2024-02-03 03:26:01 +00:00
|
|
|
"*.{js,ts}": "eslint --cache --fix",
|
2024-02-03 03:24:46 +00:00
|
|
|
"*.{ts,js,yml,md,json}": "prettier --write"
|
2022-06-13 17:42:15 +00:00
|
|
|
}
|
|
|
|
}
|