forked from dynamoose/dynamoose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.41 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
67
68
69
70
71
72
{
"name": "dynamoose",
"version": "0.8.7",
"description": "Dynamoose is a modeling tool for Amazon's DynamoDB (inspired by Mongoose)",
"typings": "./dynamoose.d.ts",
"homepage": "https://github.com/dynamoosejs/dynamoose",
"repository": {
"type": "git",
"url": "https://github.com/dynamoosejs/dynamoose"
},
"bugs": {
"url": "https://github.com/dynamoosejs/dynamoose/issues"
},
"main": "index.js",
"scripts": {
"test": "grunt test",
"coverage": "nyc grunt test"
},
"keywords": [
"dynamodb",
"dynamo",
"mongoose",
"aws",
"amazon",
"document",
"model",
"schema",
"database",
"data",
"datastore",
"query",
"scan",
"nosql",
"db"
],
"author": "Brandon Goode",
"license": "MIT",
"devDependencies": {
"coveralls": "^3.0.0",
"dynamodb-local": "0.0.18",
"grunt": "^1.0.1",
"grunt-contrib-jshint": "^1.1.0",
"grunt-mocha-test": "^0.13.2",
"mocha": "^3.5.3",
"nyc": "^11.2.1",
"should": "^11.2.1"
},
"dependencies": {
"aws-sdk": "^2.207.0",
"debug": "^2.6.8",
"hooks": "0.3.2",
"lodash": "^4.17.4",
"q": "^1.5.0"
},
"engines": {
"node": ">=8.0.0"
},
"nyc": {
"include": [
"lib/**/*.js"
],
"reporter": [
"html",
"text-summary"
],
"check-coverage": true,
"lines": 82,
"statements": 82,
"functions": 87,
"branches": 71
}
}