-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.1 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
{
"name": "@rabbitcc/actions",
"version": "0.0.17",
"description": "Common GitHub actions",
"scripts": {
"start": "tsc -w",
"build": "tsc",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HairyRabbit/actions.git"
},
"files": [
"dist"
],
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/HairyRabbit/actions/issues"
},
"homepage": "https://github.com/HairyRabbit/actions#readme",
"dependencies": {
"@actions/core": "^1.3.0",
"@actions/exec": "^1.0.4",
"@actions/github": "^5.0.0",
"@actions/io": "^1.1.0",
"@octokit/rest": "^18.5.4",
"semver": "^7.3.5",
"tslib": "^2.2.0",
"yargs-parser": "^20.2.7"
},
"devDependencies": {
"@octokit/webhooks-definitions": "^3.67.3",
"@types/jest": "^26.0.23",
"@types/node": "^15.6.1",
"@types/semver": "^7.3.6",
"jest": "^27.0.1",
"ts-jest": "^27.0.1",
"typescript": "4.1"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"publishConfig": {
"access": "public"
}
}