forked from baseprime/dynamodb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1002 Bytes
/
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
{
"name": "dynamodb",
"version": "1.3.0",
"contributors": [
"Ryan Fitzgerald <[email protected]>",
"Greg Sabia Tucker <[email protected]>"
],
"description": "DynamoDB data mapper for node.js",
"main": "index.js",
"scripts": {
"test": "make test",
"test-standalone": "npm run dynamodb-local & sleep 10 && npm test",
"dynamodb-local": "./test/bin/dynamodb-local"
},
"repository": "git://github.com/baseprime/dynamodb.git",
"keywords": [
"datamapper",
"DynamoDB",
"aws",
"amazon",
"nosql"
],
"engines": {
"node": ">=10.0.0"
},
"license": "MIT",
"dependencies": {
"joi": "^17.2.1",
"async": "^2.6.3",
"aws-sdk": "^2.756.0",
"bunyan": "^1.8.14",
"lodash": "^4.17.20",
"stream-to-promise": "^2.2.0",
"uuid": "^7.0.3"
},
"devDependencies": {
"chai": "^4.2.0",
"jshint": "^2.12.0",
"jshint-stylish": "^2.2.1",
"mocha": "^7.2.0",
"nyc": "^15.1.0",
"sinon": "^9.0.3"
}
}