generated from notiz-dev/github-action-template
-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
35 lines (35 loc) · 841 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
{
"name": "get-json-property",
"version": "0.2.0",
"private": true,
"description": "Simple GitHub Action to read a specified property from a JSON file.",
"main": "lib/index.js",
"scripts": {
"build": "tsc && npm run pack",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"pack": "ncc build --source-map --license licenses.txt"
},
"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.10.0"
},
"devDependencies": {
"@types/node": "^16.11.6",
"@vercel/ncc": "^0.34.0",
"prettier": "^1.19.1",
"typescript": "4.8.4"
}
}