-
Notifications
You must be signed in to change notification settings - Fork 823
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 1.92 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@aws-amplify/amplify-category-function",
"version": "5.8.2",
"description": "amplify-cli function plugin",
"repository": {
"type": "git",
"url": "https://github.com/aws-amplify/amplify-cli.git",
"directory": "packages/amplify-category-function"
},
"author": "Amazon Web Services",
"license": "Apache-2.0",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"clean": "rimraf lib tsconfig.tsbuildinfo node_modules",
"test": "jest --logHeapUsage",
"watch": "tsc -w",
"extract-api": "ts-node ../../scripts/extract-api.ts"
},
"keywords": [
"amplify",
"aws"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"@aws-amplify/amplify-cli-core": "4.6.0",
"@aws-amplify/amplify-environment-parameters": "1.9.25",
"@aws-amplify/amplify-function-plugin-interface": "1.12.1",
"@aws-amplify/amplify-prompts": "2.8.7",
"@aws-sdk/client-ssm": "^3.919.0",
"archiver": "^7.0.1",
"chalk": "^4.1.1",
"cloudform-types": "^4.2.0",
"enquirer": "^2.3.6",
"folder-hash": "^4.0.2",
"fs-extra": "^8.1.0",
"globby": "^11.0.3",
"graphql-transformer-core": "^8.2.18",
"inquirer": "^7.3.3",
"inquirer-datepicker": "^2.0.0",
"lodash": "^4.17.21",
"promise-sequential": "^1.1.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/folder-hash": "^4.0.1",
"jest": "^29.7.0"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.{ts,tsx,js,jsx}",
"!src/__tests__/"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testEnvironmentOptions": {
"url": "http://localhost"
},
"testRegex": "((\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"berry": {
"plugins": [
"@yarn/plugin-typescript"
]
}
}