Files
go-dependency-submission/package.json

60 lines
1.8 KiB
JSON
Raw Permalink Normal View History

{
"name": "go-dependency-submission",
2025-03-26 11:26:53 -04:00
"version": "2.0.3",
"description": "Go Dependency Submission",
"main": "dist/index.js",
"engines": {
"node": ">=24"
},
"scripts": {
"build": "tsc",
"format": "npx prettier --write '**/*.ts'",
"format-check": "npx prettier --check '**/*.ts'",
"lint": "eslint --fix src/**/*.ts",
"package": "ncc build --source-map --license licenses.txt",
2024-01-10 14:06:12 +00:00
"test": "jest --testTimeout=10000",
"test:watch": "jest --watch src",
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
},
"repository": {
"type": "git",
2023-05-31 11:28:29 +02:00
"url": "git+https://github.com/actions/go-dependency-submission.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
2023-05-31 11:28:29 +02:00
"url": "https://github.com/actions/go-dependency-submission/issues"
},
2023-05-31 11:28:29 +02:00
"homepage": "https://github.com/actions/go-dependency-submission#readme",
"devDependencies": {
2025-03-21 21:00:28 +00:00
"@babel/core": "^7.26.10",
"@babel/preset-env": "^7.26.9",
"@babel/preset-typescript": "^7.27.0",
"@types/jest": "^27.5.2",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"@vercel/ncc": "^0.33.4",
2025-03-21 21:00:28 +00:00
"babel-jest": "^29.7.0",
"eslint": "^8.13.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.5.3",
"eslint-plugin-n": "^15.1.0",
"eslint-plugin-promise": "^6.0.0",
"prettier": "^3.5.3",
2025-03-21 21:00:28 +00:00
"ts-jest": "^29.0.0",
"typescript": "^4.6.4"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.1",
"@github/dependency-submission-toolkit": "^2.0.5",
"packageurl-js": "^0.0.6"
},
"overrides": {
"undici": "^6.24.0"
}
}