generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 750 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 750 Bytes
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
{
"name": "github-action-template",
"version": "0.0.0",
"private": true,
"description": "TypeScript template action",
"main": "lib/index.js",
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"pack": "ncc build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/notiz-dev/github-action-template"
},
"keywords": [
"actions",
"node",
"setup",
"typescript",
"GitHub"
],
"author": "notiz.dev",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.2.0"
},
"devDependencies": {
"@types/node": "^12.7.12",
"@zeit/ncc": "^0.20.5",
"prettier": "^1.19.1",
"typescript": "3.8.3"
}
}