forked from cypress-io/github-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.52 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
59
60
61
62
{
"name": "@cypress/github-action",
"version": "0.0.0-development",
"description": "GitHub Action for running Cypress end-to-end 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",
"check:markdown": "find *.md -exec npx markdown-link-check {} \\;"
},
"repository": {
"type": "git",
"url": "https://github.com/cypress-io/github-action.git"
},
"keywords": [
"actions",
"cypress-io"
],
"author": "Gleb Bahmutov <gleb@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": "1.0.8",
"@actions/core": "1.6.0",
"@actions/exec": "1.1.0",
"@actions/io": "1.1.1",
"@octokit/core": "3.5.1",
"argument-vector": "1.0.2",
"debug": "4.3.2",
"execa": "3.4.0",
"find-yarn-workspace-root": "2.0.0",
"got": "11.8.3",
"hasha": "5.2.2",
"quote": "0.4.0"
},
"devDependencies": {
"@types/node": "12.20.37",
"@zeit/ncc": "0.22.3",
"husky": "4.3.8",
"markdown-link-check": "3.8.7",
"prettier": "2.4.1",
"stop-build": "1.1.0"
},
"publishConfig": {
"access": "public"
},
"husky": {
"hooks": {
"pre-commit": "npm run format && npm run build && git add index.js dist"
}
}
}