1
0
Files

40 lines
938 B
JSON
Raw Permalink Normal View History

2020-02-18 00:34:10 -06:00
{
"name": "typescript-action",
"version": "1.0.0",
"private": true,
"description": "TypeScript template action",
"main": "dist/main.js",
"engines": {
2020-05-01 23:07:16 -05:00
"node": ">=12.0.0"
2020-02-18 00:34:10 -06:00
},
"scripts": {
2020-05-17 16:57:25 -05:00
"build": "ncc build src/main.ts -o dist --watch",
"build-docker": "docker build --tag action .",
"run-docker": "act --workflows ./debug/ --secret username=UserNameHere --secret password=PasswordHere"
2020-02-18 00:34:10 -06:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/typescript-action.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "SamKirkland",
"license": "MIT",
"dependencies": {
2020-05-01 23:07:16 -05:00
"@actions/core": "1.2.4",
"@actions/exec": "1.0.4"
2020-02-18 00:34:10 -06:00
},
"devDependencies": {
2020-05-01 23:07:16 -05:00
"@types/jest": "25.2.1",
2020-02-18 00:34:10 -06:00
"@types/node": "12.12.8",
2020-05-01 23:07:16 -05:00
"@zeit/ncc": "0.22.1",
"jest": "25.5.3",
"jest-circus": "25.5.3",
"ts-jest": "25.4.0",
"typescript": "3.8.3"
2020-02-18 00:34:10 -06:00
}
}