-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
31 lines (31 loc) · 1.08 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
{
"name": "@localstack/appsync-utils",
"version": "0.1.0",
"description": "Implementation of the AppSync utils helpers",
"type": "module",
"main": "index.js",
"scripts": {
"test:aws": "NODE_OPTIONS=\"--experimental-vm-modules\" TEST_TARGET=AWS_CLOUD jest -u",
"test": "NODE_OPTIONS=\"--experimental-vm-modules\" jest --ci",
"evaluate": "node ./scripts/evaluate.js ./scripts/testcode.js",
"coverage": "node --experimental-specifier-resolution=node ./scripts/coverage.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/localstack/localstack-appsync-utils.git"
},
"author": "LocalStack Team",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/localstack/localstack-appsync-utils/issues"
},
"homepage": "https://github.com/localstack/localstack-appsync-utils#readme",
"devDependencies": {
"@aws-appsync/utils": "^1.12.0",
"@aws-sdk/client-appsync": "^3.744.0",
"jest": "^29.7.0"
},
"dependencies": {
"uuid": "^11.0.5"
}
}