-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
52 lines (52 loc) · 1.34 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
{
"name": "graphql-ttl-transformer",
"version": "2.0.2",
"description": "Enable DynamoDB's time-to-live feature to auto-delete old entries in your AWS Amplify API!",
"author": "Florian Gyger <[email protected]>",
"license": "MIT",
"scripts": {
"start": "tsc -w",
"build": "tsc",
"test": "jest",
"prepublishOnly": "npm run test && npm run build",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\""
},
"main": "./dist/index.js",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/flogy/graphql-ttl-transformer.git"
},
"bugs": {
"url": "https://github.com/flogy/graphql-ttl-transformer/issues"
},
"homepage": "https://github.com/flogy/graphql-ttl-transformer#readme",
"keywords": [
"aws",
"amplify",
"grapqhl",
"ttl",
"transformer",
"time",
"to",
"live",
"dynamodb"
],
"devDependencies": {
"@aws-amplify/graphql-model-transformer": "^1.4.0",
"@types/jest": "^29.5.1",
"jest": "^29.5.0",
"prettier": "^2.8.7",
"ts-jest": "^29.1.0",
"typescript": "^4.9.5"
},
"dependencies": {
"@aws-amplify/amplify-cli-core": "^4.2.7",
"@aws-amplify/graphql-transformer-core": "^1.4.0",
"graphql": "^15.8.0",
"graphql-mapping-template": "^4.20.8",
"graphql-transformer-common": "^4.24.5"
}
}