-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.2 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"version": "0.1.7",
"description": "Setup mockery Github Action",
"private": true,
"main": "lib/index.js",
"scripts": {
"build": "tsc && ncc build --minify",
"fmt:fix": "ts-standard --fix src/*.ts",
"fmt": "ts-standard src/*.ts",
"test": "jest --coverage",
"pre-checkin": "npm run format && npm run build && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brokeyourbike/go-mockery-action.git"
},
"keywords": [
"actions",
"go",
"setup",
"mockery"
],
"author": "Ivan Stasiuk <[email protected]>",
"license": "MPL-2.0",
"dependencies": {
"@actions/core": "^1.6.0",
"@actions/http-client": "^1.0.11",
"@actions/io": "^1.1.1",
"@actions/tool-cache": "^1.7.1",
"@octokit/plugin-paginate-rest": "^2.17.0",
"lodash": "^4.17.21",
"semver": "^7.3.5"
},
"devDependencies": {
"@types/jest": "^28",
"@types/node": "^20",
"@types/prettier": "2.6.0",
"@types/semver": "^7.3.9",
"@vercel/ncc": "^0.38",
"jest": "^28",
"jest-circus": "^28",
"nock": "^13.2.1",
"ts-jest": "^28",
"ts-standard": "*",
"typescript": "<=4.5.0"
},
"standard": {
"ignore": "dist/"
}
}