-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.72 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": "github-actions",
"version": "1.0.0",
"description": "Various GHA workflows packaged as workflow_call events.",
"main": "scripts/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"docs": "ts-node scripts/generate-docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lockerstock/github-actions.git"
},
"author": "lockerstock",
"license": "ISC",
"bugs": {
"url": "https://github.com/lockerstock/github-actions/issues"
},
"homepage": "https://github.com/lockerstock/github-actions#readme",
"workspaces": [
"add-release-notes",
"cleanup-ghcr",
"delete-inactive-deployments",
"determine-environment",
"package-has-version",
"get-package-version",
"git-tag-exists"
],
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"octokit": "^2.0.14",
"parse-duration": "^1.0.3",
"semver": "^7.3.8"
},
"devDependencies": {
"@octokit/core": "^4.2.0",
"@octokit/openapi-types": "^16.0.0",
"@octokit/request-error": "^3.0.3",
"@octokit/types": "^9.0.0",
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/node": "^18.15.10",
"@types/semver": "^7.3.13",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"@vercel/ncc": "^0.36.1",
"action-docs": "^1.0.4",
"ava": "^5.2.0",
"chai": "^4.3.7",
"dotenv": "^16.0.3",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-github": "^4.7.0",
"eslint-plugin-prettier": "^4.2.1",
"js-yaml": "^4.1.0",
"mocha": "^10.2.0",
"prettier": "^2.8.7",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
}
}