forked from mr-smithers-excellent/docker-build-push
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.46 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
51
52
53
54
55
{
"name": "docker-build-push-action",
"version": "5.7.0",
"description": "Docker Build & Push Action",
"main": "src/index.js",
"scripts": {
"build": "ncc build src/main.js",
"precommit": "npm run build && git add dist/",
"lint": "eslint 'src/**.js' 'tests/**.js' --fix",
"test": "eslint 'src/**.js' 'tests/**.js' && jest --coverage",
"test:watch": "npm run test -- --watchAll",
"prepare": "husky install"
},
"husky": {
"hooks": {
"pre-commit": "npm run precommit"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/mr-smithers-excellent/docker-build-push-action.git"
},
"keywords": [
"GitHub",
"Actions",
"Docker",
"GCR",
"ECR",
"Docker Hub"
],
"author": "Sean Smith",
"license": "MIT",
"bugs": {
"url": "https://github.com/mr-smithers-excellent/docker-build-push-action/issues"
},
"homepage": "https://github.com/mr-smithers-excellent/docker-build-push-action#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"dayjs": "^1.11.8"
},
"devDependencies": {
"@vercel/ncc": "^0.36.1",
"eslint": "^8.43.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"husky": "^8.0.3",
"jest": "^29.5.0",
"prettier": "^2.8.8"
}
}