-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
32 lines (32 loc) · 926 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
{
"name": "action-sonarqube",
"version": "1.0.0",
"main": "lib/index.ts",
"repository": "https://github.com/vtex/action-sonarqube",
"author": "Thayanne Sousa <[email protected]>",
"license": "MIT",
"scripts": {
"build": "ncc build src/index.ts --source-map --license licenses.txt --out dist",
"all": "yarn build && yarn package",
"lint": "eslint src/",
"format": "prettier --write \"src/**/*.{ts,js,json}\"",
"postinstall": "husky install"
},
"devDependencies": {
"@octokit/types": "^6.3.2",
"@vercel/ncc": "^0.27.0",
"@vtex/prettier-config": "^0.3.6",
"@vtex/tsconfig": "^0.5.6",
"eslint": "^7.18.0",
"eslint-config-vtex": "^12.9.3",
"husky": "^5.0.6",
"prettier": "^2.2.1",
"typescript": "^4.1.3"
},
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/exec": "^1.0.4",
"@actions/github": "^4.0.0",
"axios": "^0.21.1"
}
}