forked from KoteiIto/node-athena
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.68 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
{
"name": "athena-client",
"version": "2.5.1",
"description": "a nodejs simple aws athena client",
"homepage": "https://github.com/KoteiIto/node-athena",
"repository": {
"type": "git",
"url": "git@github.com:KoteiIto/node-athena.git"
},
"main": "build/index.js",
"types": "build/index.d.ts",
"typings": "build/index.d.ts",
"scripts": {
"pretest": "npm run build",
"test": "rm -rf coverage && istanbul cover _mocha -- -R spec build/test/*.js",
"posttest": "cd coverage && remap-istanbul -i coverage.json -o html-report -t html",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"fmt": "tslint -c tslint.json 'src/**/*.ts' --fix",
"prebuild": "npm run fmt",
"build": "rm -rf build && tsc",
"watch": "onchange 'src/**/*.ts' -- npm run build",
"precommit": "lint-staged",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"lint-staged": {
"src/**/*.ts": [
"npm run fmt",
"git add"
]
},
"keywords": [
"aws",
"athena",
"aws-athena",
"nodejs",
"athena-client",
"lambda",
"aws-lambda",
"javascript",
"typescript"
],
"author": "KoteiIto",
"devDependencies": {
"@types/mocha": "^5.2.6",
"@types/node": "^12.0.0",
"coveralls": "^3.0.3",
"husky": "^2.2.0",
"istanbul": "^0.4.5",
"lint-staged": "^8.1.6",
"mocha": "^6.1.4",
"onchange": "^5.2.0",
"prettier": "^1.17.0",
"remap-istanbul": "^0.13.0",
"tslint": "^5.16.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^2.9.2",
"typescript-collections": "^1.3.2"
},
"dependencies": {
"aws-sdk": "^2.449.0",
"csv-parser": "^1.12.1"
}
}