-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.22 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": "tynogels",
"description": "A modern, typed DynamoDB data mapper.",
"keywords": [
"aws",
"dynamodb",
"datamapper",
"typed",
"typescript",
"promises"
],
"author": "Michael Poteat <[email protected]>",
"license": "MIT",
"main": "dist/index.js",
"version": "2.1.0",
"scripts": {
"test": "jest",
"build": "tsc",
"version": "tsc"
},
"repository": {
"type": "git",
"url": "[email protected]:poteat/tynogels"
},
"devDependencies": {
"@types/jest": "^24.0.18",
"@types/local-dynamo": "^0.5.0",
"@types/lodash": "^4.14.139",
"@types/node": "^12.7.2",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"codecov": "^3.5.0",
"eslint": "^6.2.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-jest": "^22.17.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.2.1",
"jest": "^24.9.0",
"local-dynamo": "^0.5.0",
"prettier": "^1.18.2",
"sleep-promise": "^8.0.1",
"ts-jest": "^24.0.2",
"ts-loader": "^6.0.4",
"typescript": "^3.5.3"
},
"dependencies": {
"aws-sdk": "^2.511.0",
"fp-ts": "^2.0.5",
"io-ts": "^2.0.1",
"lodash": "^4.17.15"
}
}