-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
30 lines (30 loc) · 892 Bytes
/
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
{
"name": "@shrink/actions-docker-extract",
"description": "Extract from a Docker Image",
"author": "Samuel Ryan <[email protected]>",
"private": true,
"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"
},
"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"
}
}