-
Notifications
You must be signed in to change notification settings - Fork 70
/
package.json
43 lines (43 loc) · 1.21 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
{
"name": "athena-express",
"version": "7.1.5",
"description": "Athena-Express makes it easier to execute SQL queries on Amazon Athena by consolidating & astracting several methods in the AWS SDK",
"main": "./lib/index.js",
"types": "./index.d.ts",
"scripts": {
"test": "node ./node_modules/mocha/bin/mocha",
"coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"start": "npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ghdna/athena-express.git"
},
"keywords": [
"aws",
"athena",
"amazon",
"amazon",
"web",
"services",
"sql",
"database"
],
"author": "Gary Arora (https://twitter.com/AroraGary)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ghdna/athena-express/issues"
},
"homepage": "https://github.com/ghdna/athena-express#readme",
"devDependencies": {
"aws-sdk": ">=2.814.0",
"chai": "^4.2.0",
"coveralls": "^3.0.11",
"istanbul": "^0.4.5",
"mocha": "^8.3.2",
"mocha-lcov-reporter": "^1.3.0"
},
"dependencies": {
"csvtojson": "^2.0.10"
}
}