mirror of
https://github.com/actions/github-script.git
synced 2025-12-08 08:06:23 +00:00
44 lines
866 B
JSON
44 lines
866 B
JSON
{
|
|
"name": "github-script",
|
|
"description": "A GitHub action for executing a simple script",
|
|
"version": "0.9.0",
|
|
"author": "GitHub",
|
|
"dependencies": {
|
|
"@actions/core": "^1.2.3",
|
|
"@actions/github": "^2.1.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^25.1.4",
|
|
"@zeit/ncc": "^0.22.0",
|
|
"husky": "^4.2.3",
|
|
"jest": "^25.1.0",
|
|
"ts-jest": "^25.2.1",
|
|
"typescript": "^3.8.3"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "npm run build && git add dist/"
|
|
}
|
|
},
|
|
"jest": {
|
|
"preset": "ts-jest",
|
|
"testEnvironment": "node",
|
|
"globals": {
|
|
"ts-jest": {
|
|
"diagnostics": {
|
|
"ignoreCodes": [
|
|
"151001"
|
|
]
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"license": "MIT",
|
|
"main": "dist/index.js",
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "ncc build src/main.ts",
|
|
"test": "jest"
|
|
}
|
|
}
|