forked from inprod/github-run-changesets
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 911 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 911 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": "inprod-run-changesets",
"version": "1.0.1",
"description": "GitHub Action to run InProd changesets against Genesys Cloud environments",
"main": "dist/index.js",
"scripts": {
"build": "ncc build src/index.js -o dist && ncc build node_modules/@inprod.io/run-changesets/src/index.js -o dist/run-changesets",
"test": "jest --verbose",
"test:coverage": "jest --verbose --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/inprod/github-run-changesets.git"
},
"keywords": [
"github-actions",
"inprod",
"genesys-cloud",
"changesets",
"ci-cd"
],
"author": "InProd Solutions",
"license": "Apache-2.0",
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@actions/core": "^1.10.1"
},
"devDependencies": {
"@inprod.io/run-changesets": "^1.0.0",
"@vercel/ncc": "^0.38.1",
"jest": "^30.2.0"
}
}