generated from tangro/tangro-actions-template
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
35 lines (35 loc) · 1.01 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
{
"name": "@tangro/actions-license-check",
"version": "1.0.14",
"private": true,
"description": "Action to check the repo for (production) dependencies that have an disallowed license",
"main": "lib/main.js",
"scripts": {
"build": "rimraf dist && 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/actions-license-check.git"
},
"keywords": [
"actions"
],
"author": "ankri",
"license": "MIT",
"dependencies": {
"@actions/core": "1.11.1",
"@actions/exec": "1.1.1",
"@tangro/tangro-github-toolkit": "1.0.9",
"@vercel/ncc": "0.38.2"
},
"devDependencies": {
"@types/node": "22.9.0",
"ejs": "3.1.10",
"rimraf": "6.0.1",
"typescript": "5.6.3"
}
}