-
Notifications
You must be signed in to change notification settings - Fork 63
/
package.json
57 lines (57 loc) · 1.51 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
56
57
{
"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": {
"18": "^0.0.0",
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"dayjs": "^1.11.13"
},
"devDependencies": {
"@vercel/ncc": "^0.38.3",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"husky": "^9.1.7",
"jest": "^29.7.0",
"mockdate": "^3.0.5",
"prettier": "^3.4.2"
}
}