forked from mr-smithers-excellent/docker-build-push
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
48 lines (48 loc) · 1.33 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
{
"name": "docker-build-push-action",
"version": "0.1.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"
},
"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.1.1",
"@actions/github": "^1.1.0"
},
"devDependencies": {
"@zeit/ncc": "^0.20.5",
"eslint": "^6.3.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"husky": "^3.0.9",
"jest": "^24.9.0",
"prettier": "^1.18.2"
}
}