-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
58 lines (58 loc) · 1.97 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
51
52
53
54
55
56
57
58
{
"name": "@endorlabs/github-action",
"version": "1.1.5",
"private": true,
"description": "TypeScript action",
"scripts": {
"all": "yarn run build && yarn run format && yarn run lint && yarn run package && yarn test && yarn run license",
"build": "tsc",
"format": "prettier --check '**/*.{js,json,ts}'",
"format:fix": "prettier --write '**/*.{js,json,ts}'",
"license": "licensed status",
"license:fix": "licensed cache",
"lint": "eslint --quiet .",
"lint:fix": "eslint --fix .",
"package": "ncc build src/scan.ts --source-map --license licenses.txt && ncc build -o dist/sign src/sign.ts --source-map --license licenses.txt && ncc build -o dist/verify src/verify.ts --source-map --license licenses.txt && ncc build -o dist/setup src/setup.ts --source-map --license licenses.txt",
"test": "jest --reporters=default --verbose",
"test:ci": "jest --ci --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/endorlabs/github-action.git"
},
"dependencies": {
"@actions/artifact": "^2.1.11",
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^5.1.1",
"@actions/http-client": "^2.0.1",
"@actions/io": "^1.1.2",
"@actions/tool-cache": "^2.0.1",
"@octokit/webhooks-definitions": "^3.67.3"
},
"devDependencies": {
"@types/jest": "^29.4.0",
"@types/node": "^18.11.0",
"@typescript-eslint/parser": "^5.56.0",
"@vercel/ncc": "^0.36.0",
"eslint": "^8.44.0",
"eslint-define-config": "^1.16.0",
"eslint-plugin-github": "^4.6.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.6.1",
"js-yaml": "^4.1.0",
"prettier": "2.5.1",
"ts-jest": "^29.1.1",
"typescript": "4.9.5"
},
"engines": {
"node": ">=20.18.0",
"npm": "Please use yarn instead of npm to install dependencies",
"yarn": "1.22.22"
},
"packageManager": "[email protected]",
"resolutions": {
"semver": ">=7.5.2"
}
}