-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 842 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 842 Bytes
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
{
"name": "setup-wiremock-action",
"version": "0.1.0",
"description": "Setup a standalone Wiremock process with stubs defined in JSON files",
"main": "index.js",
"scripts": {
"test:example": "node example.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/williamhaw/setup-wiremock-action.git"
},
"keywords": [
"actions",
"wiremock"
],
"author": "William Haw",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/williamhaw/setup-wiremock-action/issues"
},
"homepage": "https://github.com/williamhaw/setup-wiremock-action#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/tool-cache": "^2.0.1",
"fs-extra": "^9.0.0",
"got": "^11.8.5"
},
"devDependencies": {
"prettier": "2.0.2",
"@types/fs-extra": "^8.1.0"
}
}