forked from sauramirez/dynogels-lambda
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.13 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.13 KB
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
{
"name": "@skycatch/dynogels-lambda",
"version": "1.1.0",
"author": "Ryan Fitzgerald <ryan@codebrewstudios.com>",
"contributors": [
"Clarkie <andrew.t.clarke@gmail.com> (http://clarkie.io)",
"Essau <saumotions@gmail.com> (http://saumotions.com)"
],
"description": "DynamoDB data mapper for lambda",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"test": "make test",
"ci": "make coverage",
"coveralls": "cat coverage/lcov.info | coveralls"
},
"repository": "git://github.com/sauramirez/dynogels-lambda.git",
"keywords": [
"datamapper",
"DynamoDB",
"dynamodb",
"aws",
"amazon",
"nosql"
],
"engines": {
"node": ">=4"
},
"license": "MIT",
"dependencies": {
"async": "^2.6.4",
"bunyan": "1.x.x",
"joi": "11.x.x",
"lodash": "^4.17.21",
"uuid": "3.x.x"
},
"devDependencies": {
"aws-sdk": "2.x.x",
"chai": "4.x.x",
"coveralls": "3.x.x",
"eslint": "2.x.x",
"eslint-config-airbnb-base": "3.x.x",
"eslint-plugin-import": "1.x.x",
"istanbul": "0.x.x",
"jscoverage": "0.x.x",
"mocha": "4.x.x",
"sinon": "4.x.x"
}
}