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