-
Notifications
You must be signed in to change notification settings - Fork 347
/
package.json
58 lines (58 loc) · 1.5 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": "@cypress/github-action",
"version": "0.0.0-development",
"description": "GitHub Action for running Cypress end-to-end and component tests",
"private": false,
"main": "dist/index.js",
"files": [
"dist",
"src",
"action.yml"
],
"scripts": {
"test": "echo \"There are no tests :(\"",
"build": "ncc build -o dist index.js",
"format": "prettier --write index.js src/ping.js",
"check:markdown": "find *.md docs/*.md -print0 | xargs -0 -n1 markdown-link-check",
"update:cypress": "./scripts/update-cypress-latest.sh",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cypress-io/github-action.git"
},
"keywords": [
"actions",
"cypress-io"
],
"author": "Cypress-io",
"license": "MIT",
"bugs": {
"url": "https://github.com/cypress-io/github-action/issues"
},
"homepage": "https://github.com/cypress-io/github-action#readme",
"dependencies": {
"@actions/cache": "3.3.0",
"@actions/core": "1.11.1",
"@actions/exec": "1.1.1",
"@actions/io": "1.1.3",
"@octokit/core": "4.2.0",
"argument-vector": "1.0.2",
"debug": "4.3.7",
"find-yarn-workspace-root": "2.0.0",
"got": "11.8.6",
"hasha": "5.2.2",
"quote": "0.4.0",
"supports-color": "9.3.1"
},
"devDependencies": {
"@types/node": "22.8.7",
"@vercel/ncc": "0.38.1",
"husky": "9.1.6",
"markdown-link-check": "3.13.6",
"prettier": "3.3.3"
},
"publishConfig": {
"access": "public"
}
}