forked from dynamodb-toolbox/dynamodb-toolbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.12 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
{
"name": "dynamodb-toolbox",
"version": "0.2.0-alpha",
"description": "A simple set of tools for working with Amazon DynamoDB and the DocumentClient.",
"author": "Jeremy Daly <[email protected]>",
"main": "index.js",
"scripts": {
"test": "jest unit",
"test-cov": "jest unit --coverage",
"test-ci": "eslint . && jest unit --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"lint": "eslint ."
},
"license": "MIT",
"dependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/jeremydaly/dynamodb-toolbox.git"
},
"keywords": [
"serverless",
"aws",
"dynamodb",
"nosql"
],
"bugs": {
"url": "https://github.com/jeremydaly/dynamodb-toolbox/issues"
},
"homepage": "https://github.com/jeremydaly/dynamodb-toolbox#readme",
"jest": {
"testPathIgnorePatterns": [
"/__tests__/entities/*"
],
"coveragePathIgnorePatterns": [
"/__tests__/*"
]
},
"devDependencies": {
"aws-sdk": "^2.673.0",
"coveralls": "^3.1.0",
"dynalite": "^3.1.6",
"eslint": "^6.8.0",
"jest": "^24.9.0"
}
}