-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.37 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": "@moznion/ts-dynamodb-attributes-transformer",
"version": "0.2.0",
"description": "Code transformer plugin for Amazon DynamoDB attributes powered by TypeScript Compiler API",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest --no-cache",
"fmt": "find -name '*.ts' -not -path './node_modules/*' | xargs prettier --write",
"lint": "eslint .",
"release": "npm run build && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/moznion/ts-dynamodb-attributes-transformer.git"
},
"keywords": [
"DynamoDB",
"Transformer"
],
"author": {
"name": "moznion",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/moznion/ts-dynamodb-attributes-transformer/issues"
},
"homepage": "https://github.com/moznion/ts-dynamodb-attributes-transformer#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "5.44.0",
"@typescript-eslint/parser": "5.44.0",
"eslint": "8.28.0",
"jest": "29.3.1",
"prettier": "2.7.1",
"ts-jest": "29.0.3",
"ts-node": "10.9.1",
"ttypescript": "1.5.13",
"typescript": "4.9.3"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.186.0"
},
"files": [
"index.js",
"index.d.ts",
"transformer.js",
"transformer.ts",
"lib"
]
}