-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
60 lines (60 loc) · 1.75 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
58
59
60
{
"name": "gh-ecr-push",
"version": "2.0.2",
"description": "Publish docker images to Amazon Elastic Container Registry (ECR).",
"main": "lib/main.js",
"type": "module",
"scripts": {
"test": "mocha",
"build": "tsc",
"clean": "rm -rf lib dist",
"format": "prettier --write \"**/*.ts\"",
"lint": "eslint src",
"package": "ncc build --source-map --license licenses.txt",
"all": "npm run format && npm run clean && npm run build && npm run lint && npm run package && npm test",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jwalton/gh-ecr-push.git"
},
"keywords": [
"github",
"actions",
"github actions",
"ecr",
"aws",
"amazon"
],
"author": "Jason Walton",
"license": "MIT",
"bugs": {
"url": "https://github.com/jwalton/gh-ecr-push/issues"
},
"homepage": "https://github.com/jwalton/gh-ecr-push#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"gh-ecr-login": "^3.0.1"
},
"devDependencies": {
"@eslint/js": "^9.1.1",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/chai": "^4.3.3",
"@types/mocha": "^10.0.6",
"@types/node": "^20.12.8",
"@vercel/ncc": "^0.38.1",
"chai": "^5.1.0",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"mocha": "^10.4.0",
"prettier": "^3.2.5",
"semantic-release": "^23.0.8",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"typescript-eslint": "^7.8.0"
},
"volta": {
"node": "20.12.2"
}
}