-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 799 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 799 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
36
37
38
39
40
41
42
43
44
{
"name": "@inprod.io/run-changesets",
"version": "1.0.0",
"description": "Run InProd changesets in CI/CD pipelines",
"main": "src/index.js",
"bin": {
"run-changesets": "src/index.js"
},
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage",
"lint": "eslint src/"
},
"keywords": [
"inprod",
"genesys",
"genesys-cloud",
"gitlab",
"azure-devops",
"bitbucket",
"circleci",
"jenkins",
"ci",
"changesets"
],
"license": "GPL-3.0",
"engines": {
"node": ">=18"
},
"dependencies": {
"glob": "^10.0.0",
"js-yaml": "^4.1.1"
},
"devDependencies": {
"eslint": "^8.0.0",
"jest": "^29.0.0"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/_reference/"
]
}
}