forked from KoteiIto/node-athena
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.67 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.4.0",
"description": "a nodejs simple aws athena client",
"homepage": "https://github.com/KoteiIto/node-athena",
"repository": {
"type": "git",
"url": "[email protected]:KoteiIto/node-athena.git"
},
"main": "build/index.js",
"types": "build/index.d.ts",
"typings": "build/index.d.ts",
"scripts": {
"pretest": "yarn 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": "yarn fmt",
"build": "rm -rf build && tsc",
"watch": "onchange 'src/**/*.ts' -- yarn build",
"precommit": "lint-staged",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"lint-staged": {
"src/**/*.ts": [
"yarn fmt",
"git add"
]
},
"keywords": [
"aws",
"athena",
"aws-athena",
"nodejs",
"athena-client",
"lambda",
"aws-lambda",
"javascript",
"typescript"
],
"author": "KoteiIto",
"devDependencies": {
"@types/mocha": "^2.2.45",
"@types/node": "^8.5.2",
"coveralls": "^3.0.0",
"husky": "^0.14.3",
"istanbul": "^0.4.5",
"lint-staged": "^6.0.0",
"mocha": "^4.1.0",
"onchange": "^3.3.0",
"prettier": "^1.9.2",
"remap-istanbul": "^0.9.5",
"tslint": "^5.8.0",
"tslint-eslint-rules": "^4.1.1",
"tslint-plugin-prettier": "^1.3.0",
"typescript": "^2.6.2"
},
"dependencies": {
"aws-sdk": "^2.175.0",
"csv-parser": "^1.12.0",
"typescript-collections": "^1.2.5"
}
}