-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 997 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
36
37
38
39
{
"private": true,
"name": "@plutocool/release",
"version": "0.0.0",
"description": "GitHub Action to automatically release packages using lerna or semantic-release",
"author": "Julien Dargelos <julien@plutot.cool>",
"license": "MIT",
"repository": "plutotcool/release",
"bugs": "https://github.com/plutotcool/release/issues",
"homepage": "https://github.com/plutotcool/release#readme",
"main": "dist/index.js",
"scripts": {
"build": "ncc build src/index.ts --license licenses.txt",
"prebuild": "rm -Rf dist",
"postbuild": "git add dist"
},
"pre-commit": "build",
"keywords": [
"GitHub Actions",
"publish",
"release",
"npm",
"lerna",
"semantic-release"
],
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/exec": "^1.0.4",
"@actions/github": "^4.0.0"
},
"devDependencies": {
"@vercel/ncc": "^0.25.1",
"pre-commit": "^1.2.2",
"typescript": "^4.1.2"
},
"engines": {
"node": ">=14.17"
}
}