-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
55 lines (55 loc) · 1.33 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
{
"name": "lento",
"version": "2.4.2",
"description": "Streaming client for Presto HTTP protocol v1",
"license": "MIT",
"author": "Vincent Weevers",
"main": "lento.js",
"scripts": {
"test": "standard && node test",
"test:docker": "npm-run-all test:docker:*",
"test:docker:pull": "docker pull prestosql/presto:340",
"test:docker:up": "docker run -d -p 8080:8080 --rm --name lento_test prestosql/presto:340",
"test:docker:run": "node test/integration",
"test:docker:down": "docker kill lento_test"
},
"files": [
"lib",
"lento.js"
],
"dependencies": {
"aggregate-error": "^3.1.0",
"backo": "^1.1.0",
"catering": "^2.0.0",
"debug": "^4.1.0",
"dset": "^3.1.2",
"http-errors": "^1.8.0",
"ms": "^2.1.1",
"once": "^1.4.0",
"readable-stream": "^3.6.0",
"simple-concat": "^1.0.1",
"sql-escape-string": "^1.1.0"
},
"devDependencies": {
"docker-host": "^3.1.0",
"nock": "^11.3.3",
"npm-run-all": "^4.1.5",
"standard": "^16.0.3",
"tape": "^5.0.1"
},
"hallmark": {
"validateLinks": false
},
"keywords": [
"database",
"hive",
"presto",
"prestodb"
],
"engines": {
"node": ">=8"
},
"repository": "vweevers/lento",
"bugs": "https://github.com/vweevers/lento/issues",
"homepage": "https://github.com/vweevers/lento"
}