actions-docker-extract/package.json
Samuel Ryan 0f83fca17f
🐛 Remove creation of extract destination (#3)
https://docs.docker.com/engine/reference/commandline/cp/

Current behaviour:

> DEST_PATH exists and is a directory [...] the source directory is copied into this directory

Desired behaviour:

> DEST_PATH is created as a directory and the contents of the source directory are copied into this directory
2020-09-06 15:57:37 +01:00

34 lines
1,006 B
JSON

{
"name": "@shrink/actions-docker-extract",
"version": "1.0.2",
"description": "Extract from a Docker Image",
"author": "Samuel Ryan <sam@samryan.co.uk>",
"homepage": "https://github.com/shrink/actions-docker-extract#readme",
"main": "dist/index.js",
"scripts": {
"build": "ncc build src/extract.js",
"lint": "eslint 'src/**.js' --fix",
"commit": "npm run-script lint && npm run-script build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shrink/actions-document-sign.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/shrink/actions-docker-extract/issues"
},
"dependencies": {
"@actions/core": "^1.2.4",
"@actions/exec": "^1.0.4"
},
"devDependencies": {
"@zeit/ncc": "^0.22.3",
"eslint": "^7.2.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.0.0"
}
}