-
Notifications
You must be signed in to change notification settings - Fork 820
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.23 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.23 KB
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
{
"name": "@aws-amplify/amplify-container-hosting",
"version": "2.8.19",
"description": "amplify-cli hosting plugin for containers",
"repository": {
"type": "git",
"url": "https://github.com/aws-amplify/amplify-cli.git",
"directory": "packages/amplify-container-hosting"
},
"author": "Amazon Web Services",
"license": "Apache-2.0",
"main": "lib/index.js",
"keywords": [
"amplify",
"aws"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"test-ci": "yarn jest --ci",
"clean": "rimraf lib tsconfig.tsbuildinfo node_modules",
"watch": "tsc --watch",
"test": "jest --logHeapUsage --coverage --passWithNoTests",
"extract-api": "ts-node ../../scripts/extract-api.ts"
},
"dependencies": {
"@aws-amplify/amplify-category-api": "^5.15.1",
"@aws-amplify/amplify-cli-core": "4.4.2",
"@aws-amplify/amplify-environment-parameters": "1.9.20",
"fs-extra": "^8.1.0",
"inquirer": "^7.3.3",
"mime-types": "^2.1.26",
"promise-sequential": "^1.1.1"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"lib/**/*.js",
"index.js"
]
},
"berry": {
"plugins": [
"@yarn/plugin-typescript"
]
}
}