setup-nextflow/package.json

79 lines
2.1 KiB
JSON
Raw Normal View History

2022-06-13 17:42:15 +00:00
{
"name": "install-nextflow-action",
"version": "1.4.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": {
"build": "tsc",
"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",
"package": "ncc build --source-map --license LICENSE",
"test": "c8 --reporter=lcov ava",
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
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",
"ava": {
2022-11-13 05:27:57 +00:00
"extensions": [
"ts"
],
"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"
],
"concurrency": 1,
"serial": true,
"powerAssert": true
},
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",
"@actions/github": "^6.0.0",
2022-06-13 17:42:15 +00:00
"@actions/tool-cache": "^2.0.1",
"@octokit/plugin-throttling": "^8.1.3",
2022-06-15 16:27:46 +00:00
"@types/node": "^17.0.44",
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": {
"@ava/typescript": "^3.0.1",
2022-06-15 16:27:46 +00:00
"@tsconfig/node16": "^1.0.3",
2022-11-13 04:00:34 +00:00
"@types/async-retry": "^1.4.5",
"@types/node": "^18.11.0",
"@types/semver": "^7.3.13",
2022-11-13 04:03:58 +00:00
"@typescript-eslint/parser": "^5.42.1",
"@vercel/ncc": "^0.34.0",
2022-11-13 03:51:45 +00:00
"ava": "^5.0.1",
2023-10-26 03:28:07 +00:00
"c8": "^8.0.1",
2022-11-13 04:03:58 +00:00
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
2022-11-13 20:19:47 +00:00
"eslint-plugin-ava": "^13.2.0",
2022-11-13 04:03:58 +00:00
"eslint-plugin-github": "^4.4.1",
"eslint-plugin-jest": "^27.1.5",
2022-11-14 03:22:12 +00:00
"eslint-plugin-simple-import-sort": "^8.0.0",
2022-11-13 04:03:58 +00:00
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
2022-06-15 16:27:46 +00:00
"typescript": "^4.7.3"
2022-06-13 17:42:15 +00:00
}
}