forked from Shadowblazen/dynamodb-wrapper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.52 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@flybondi/dynamodb-wrapper",
"version": "2.0.1",
"description": "A DynamoDB library that extends aws-sdk with bulk read/write, events, streams, and more",
"repository": {
"type": "git",
"url": "https://github.com/Shadowblazen/dynamodb-wrapper.git"
},
"main": "index.js",
"typings": "index.d.ts",
"scripts": {
"prepublish": "./node_modules/gulp/bin/gulp.js && ./node_modules/gulp/bin/gulp.js prepublish",
"build": "./node_modules/gulp/bin/gulp.js build",
"test": "./node_modules/gulp/bin/gulp.js test",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"files": [
"index.js",
"index.d.ts",
"bin"
],
"keywords": [
"dynamo",
"dynamodb",
"wrapper",
"stream",
"aws",
"sdk",
"aws-sdk",
"extract",
"transform",
"load",
"etl",
"bulk",
"copy",
"bcp",
"import",
"export",
"batch"
],
"author": {
"name": "Jeff Bradford",
"email": "[email protected]"
},
"license": "MIT",
"engines": {
"node": ">=4.0.0"
},
"devDependencies": {
"@types/jasmine": "3.3.12",
"@types/node": "12.0.1",
"coveralls": "3.0.3",
"del": "4.1.1",
"gulp": "4.0.2",
"gulp-istanbul": "1.1.3",
"gulp-jasmine": "4.0.0",
"gulp-tslint": "8.1.4",
"gulp-typescript": "5.0.1",
"jasmine-console-reporter": "3.1.0",
"tslint": "6.1.3",
"typescript": "5.4.5"
},
"peerDependencies": {
"@aws-sdk/client-dynamodb": "3.x"
}
}