-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
45 lines (45 loc) · 949 Bytes
/
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
{
"name": "@awspilot/dynamodb-sql",
"version": "1.0.12",
"description": "Execute queries against Amazon DynamoDB using a SQL-like syntax",
"main": "./lib/dynamodb",
"scripts": {
"test": "mocha --timeout 100000 -S -R spec --exit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/awspilot/dynamodb-sql.git"
},
"keywords": [
"dynamodb",
"sql"
],
"author": "Adrian Praja",
"license": "ISC",
"bugs": {
"url": "https://github.com/awspilot/dynamodb-sql/issues"
},
"homepage": "https://github.com/awspilot/dynamodb-sql#readme",
"dependencies": {
"@awspilot/dynamodb-util": "*",
"@awspilot/dynamodb": "*",
"aws-sdk": ">=2.45.0",
"promise": "*"
},
"devDependencies": {
"js-yaml": "3.12.0",
"memdown": "*",
"dynalite": "1.2.0",
"mocha": "5.2.0",
"async": "*",
"assert": "*"
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"browserify-shim": {
"aws-sdk": "global:AWS"
}
}