-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.13 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
{
"version": "0.3.3",
"description": "Setup ocvalidate Github Action",
"private": true,
"main": "lib/index.js",
"scripts": {
"build": "ncc build src/index.ts --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/ocvalidate-action.git"
},
"keywords": [
"actions",
"go",
"setup",
"ocvalidate",
"opencore"
],
"author": "Ivan Stasiuk <[email protected]>",
"license": "MPL-2.0",
"dependencies": {
"@actions/core": "^1.8.2",
"@actions/github": "^5.0.3",
"@actions/glob": "^0.3.0",
"@actions/tool-cache": "^2.0.1",
"lodash": "^4.17.21",
"semver": "^7.5.2"
},
"standard": {
"ignore": "dist/"
},
"devDependencies": {
"@types/jest": "^27.5.1",
"@types/node": "^20",
"@types/semver": "^7.3.9",
"@vercel/ncc": "^0.38",
"jest": "^28.1.0",
"jest-circus": "^28.1.0",
"ts-jest": "^28.0.2",
"ts-standard": "*",
"typescript": "<=4.5.0"
}
}