-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.1 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
36
{
"name": "update-pr-with-jira",
"version": "1.0.0",
"description": "GitHub Action to update PR title and body with Jira issue from branch name",
"main": "src/main.js",
"scripts": {
"lint": "rubocop --fail-level E",
"security:brakeman": "brakeman -z --force",
"security:bundler-audit": "bundle-audit check --update",
"test": "jest",
"test:watch": "jest --watchAll",
"build": "ncc build src/main.js -o dist",
"release": "semantic-release",
"ci:security": "npm run security:brakeman && npm run security:bundler-audit",
"ci:lint": "npm run lint",
"ci:test": "npm test"
},
"author": "UC Libraries Dev Team",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^6.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.1",
"@vercel/ncc": "^0.34.0",
"cross-env": "^7.0.3",
"jest": "^29.7.0",
"nock": "^13.5.6",
"semantic-release": "^24.2.0",
"sinon": "^19.0.2"
}
}