forked from yuhsak/livy-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 812 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
{
"name": "livy-client",
"version": "1.0.1",
"description": "Simple REST client for Apache Livy",
"main": "main.js",
"types": "lib/livy-client.d.ts",
"files": [
"lib",
"*.d.ts",
"package-lock.json"
],
"scripts": {
"build": "tsc --watch",
"livy-server": "docker-compose up -d",
"prepublishOnly": "tsc"
},
"author": "Yuhsak Inoue",
"license": "MIT",
"dependencies": {
"axios": "^0.19.0",
"eventemitter3": "^4.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Yuhsak/livy-client.git"
},
"keywords": [
"Spark",
"Livy"
],
"bugs": {
"url": "https://github.com/Yuhsak/livy-client/issues"
},
"homepage": "https://github.com/Yuhsak/livy-client#readme",
"devDependencies": {
"typescript": "^3.6.2"
}
}