-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
36 lines (36 loc) · 912 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
{
"name": "publish",
"private": true,
"version": "0.0.1",
"description": "Approval-based publishing system for Sentry",
"main": "index.js",
"repository": "[email protected]:getsentry/publish.git",
"author": "Sentry Open Source <[email protected]>",
"license": "Apache-2",
"volta": {
"node": "14.21.1",
"yarn": "1.22.5"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch --notify",
"lint": "eslint src .github --ignore-pattern '!.github'",
"prettier": "prettier --write src"
},
"devDependencies": {
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^26.0.0",
"eslint-plugin-yml": "^0.13.0",
"jest": "^26.6.3",
"prettier": "^2.2.1"
},
"resolutions": {
"set-value": ">=4.0.1"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@sentry/node": "^7.12.0"
}
}