-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.02 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.02 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
{
"name": "dynamo-node",
"version": "1.1.14",
"description": "most handy DynamoDB mapper yet",
"main": "dynamoDB.js",
"directories": {
"test": "tests/*"
},
"dependencies": {
"aws-sdk": "^2.49.0"
},
"devDependencies": {
"chai": "^4.0.2",
"eslint": "^4.5.0",
"eslint-config-airbnb-base": "^11.3.2",
"eslint-plugin-import": "^2.7.0",
"mocha": "^6.0.2",
"promise-fail": "^1.0.1"
},
"scripts": {
"test": "sh ./test_runner.sh",
"createTable": "node testTable create",
"deleteTable": "node testTable delete"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AbdullahZN/dynamo-node.git"
},
"keywords": [
"dynamodb",
"dynamo",
"aws-sdk",
"mapper",
"orm",
"dynamodb mapper",
"dynamo mapper",
"dynamodb orm",
"dynamo orm"
],
"author": "Abdullah Uzun",
"license": "MIT",
"bugs": {
"url": "https://github.com/AbdullahZN/dynamo-node/issues"
},
"homepage": "https://github.com/AbdullahZN/dynamo-node#readme"
}