forked from 2iq/aws-ecr-create-repository
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 903 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
31
{
"name": "careem/ecr-create-repository-action",
"version": "1.0.0",
"description": "GitHub action that creates new AWS ECR repository.",
"main": "index.js",
"scripts": {
"build": "ncc build index.js --license licenses.txt --out lib",
"test": "nyc ava",
"test:report": "npm test && nyc report --reporter=html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/careem/ecr-create-repository-action.git"
},
"author": "2iQ Research GmbH",
"license": "MIT",
"bugs": {
"url": "https://github.com/careem/ecr-create-repository-action/issues"
},
"homepage": "https://github.com/careem/ecr-create-repositor-actiony#readme",
"dependencies": {
"@actions/core": "1.10.0",
"@actions/github": "5.1.1",
"@aws-sdk/client-ecr": "3.267.0"
},
"devDependencies": {
"@vercel/ncc": "0.25.1",
"ava": "3.13.0",
"nyc": "15.1.0"
}
}