mirror of
				https://github.moeyy.xyz/https://github.com/docker/setup-docker-action.git
				synced 2025-10-27 19:16:40 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			44 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			JSON
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			JSON
		
	
	
	
	
	
| {
 | |
|   "name": "docker-setup-docker",
 | |
|   "description": "Set up Docker for use in GitHub Actions by downloading and installing a version of Docker CE",
 | |
|   "main": "lib/main.js",
 | |
|   "scripts": {
 | |
|     "build": "ncc build src/main.ts --source-map --minify --license licenses.txt",
 | |
|     "lint": "eslint src/**/*.ts __tests__/**/*.ts",
 | |
|     "format": "eslint --fix src/**/*.ts __tests__/**/*.ts",
 | |
|     "test": "jest --coverage",
 | |
|     "all": "yarn run build && yarn run format && yarn test"
 | |
|   },
 | |
|   "repository": {
 | |
|     "type": "git",
 | |
|     "url": "git+https://github.com/crazy-max/ghaction-setup-docker.git"
 | |
|   },
 | |
|   "keywords": [
 | |
|     "actions",
 | |
|     "docker",
 | |
|     "engine"
 | |
|   ],
 | |
|   "author": "CrazyMax",
 | |
|   "license": "Apache-2.0",
 | |
|   "dependencies": {
 | |
|     "@actions/core": "^1.10.0",
 | |
|     "@docker/actions-toolkit": "^0.12.0-rc.1",
 | |
|     "uuid": "^9.0.0"
 | |
|   },
 | |
|   "devDependencies": {
 | |
|     "@types/node": "^16.11.26",
 | |
|     "@typescript-eslint/eslint-plugin": "^5.14.0",
 | |
|     "@typescript-eslint/parser": "^5.14.0",
 | |
|     "@vercel/ncc": "^0.33.3",
 | |
|     "eslint": "^8.11.0",
 | |
|     "eslint-config-prettier": "^8.5.0",
 | |
|     "eslint-plugin-jest": "^26.1.1",
 | |
|     "eslint-plugin-prettier": "^4.0.0",
 | |
|     "jest": "^27.2.5",
 | |
|     "prettier": "^2.3.1",
 | |
|     "ts-jest": "^27.1.2",
 | |
|     "ts-node": "^10.7.0",
 | |
|     "typescript": "^4.4.4"
 | |
|   }
 | |
| }
 | 
