generated from cloudposse-github-actions/typescript-template
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.14 KB
/
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
40
41
42
43
{
"name": "github-action-typescript-template",
"version": "0.0.0",
"private": true,
"description": "A template for creating a GitHub Action written in TypeScript",
"main": "dist/index.js",
"scripts": {
"format": "prettier --write **/*.ts",
"format:check": "prettier --check **/*.ts",
"lint": "eslint --fix src/**/*.ts",
"lint:check": "eslint src/**/*.ts",
"build": "ncc build src/main.ts --license licenses.txt",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nelsoncanarinho/typescript-action"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "Cloud Posse LLC",
"license": "Apache-2.0",
"dependencies": {
"@actions/core": "1.10.1"
},
"devDependencies": {
"@types/jest": "29.1.1",
"@types/node": "18.19.21",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"@vercel/ncc": "0.38.1",
"eslint": "8.24.0",
"eslint-config-prettier": "8.10.0",
"eslint-plugin-jest": "27.9.0",
"jest": "29.1.2",
"prettier": "2.8.8",
"ts-jest": "29.1.2",
"typescript": "4.9.5"
}
}