-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 953 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
{
"name": "tangro-actions-template",
"version": "1.0.2",
"private": true,
"description": "A template to build GitHub actions powered by zeit ncc",
"main": "lib/main.js",
"scripts": {
"build": "ncc build src/main.ts --minify",
"update-readme": "node scripts/update-readme.js",
"update-dependencies": "npx npm-check-updates -u",
"version": "npm run build && git add -A",
"postversion": "npm run update-readme && git add -A && git commit -m \"updated readme\" && git push"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tangro/tangro-actions-template.git"
},
"keywords": [
"actions"
],
"author": "ankri",
"license": "MIT",
"dependencies": {
"@actions/core": "1.11.1",
"@tangro/tangro-github-toolkit": "1.0.9"
},
"devDependencies": {
"@types/node": "22.13.1",
"@zeit/ncc": "0.22.3",
"ejs": "3.1.10",
"rimraf": "6.0.1",
"typescript": "5.7.3"
}
}