forked from dynamoose/dynamoose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 1.57 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
73
74
75
76
77
78
79
80
81
82
83
{
"name": "dynamoose",
"version": "1.5.0",
"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",
"files": [
"index.js",
"dynamoose.d.ts",
"lib/*"
],
"scripts": {
"test": "grunt test",
"coverage": "nyc grunt test"
},
"keywords": [
"dynamodb",
"dynamo",
"mongoose",
"aws",
"amazon",
"document",
"model",
"schema",
"database",
"data",
"datastore",
"query",
"scan",
"nosql",
"db",
"nosql",
"store",
"document store",
"table",
"json"
],
"author": "Brandon Goode",
"license": "MIT",
"devDependencies": {
"coveralls": "3.0.2",
"dynamodb-local": "0.0.24",
"grunt": "1.0.3",
"grunt-contrib-jshint": "2.0.0",
"grunt-mocha-test": "0.13.3",
"mocha": "5.2.0",
"nyc": "13.1.0",
"should": "13.2.3"
},
"dependencies": {
"aws-sdk": "2.370.0",
"debug": "4.1.0",
"deep-equal": "1.0.1",
"hooks": "0.3.2",
"object-path": "0.11.4",
"q": "1.5.1"
},
"engines": {
"node": ">=8.0.0"
},
"nyc": {
"include": [
"lib/**/*.js"
],
"reporter": [
"html",
"text-summary"
],
"check-coverage": true,
"lines": 50,
"statements": 50,
"functions": 50,
"branches": 50
}
}