forked from SamKirkland/FTP-Deploy-Action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 938 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "typescript-action",
"version": "1.0.0",
"private": true,
"description": "TypeScript template action",
"main": "dist/main.js",
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/typescript-action.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "SamKirkland",
"license": "MIT",
"dependencies": {
"@actions/core": "1.2.4",
"@actions/exec": "1.0.4"
},
"devDependencies": {
"@types/jest": "25.2.1",
"@types/node": "12.12.8",
"@zeit/ncc": "0.22.1",
"jest": "25.5.3",
"jest-circus": "25.5.3",
"ts-jest": "25.4.0",
"typescript": "3.8.3"
}
}