-
Notifications
You must be signed in to change notification settings - Fork 59
/
package.json
60 lines (60 loc) · 1.35 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
{
"name": "shib",
"version": "1.0.0",
"engines": {
"node": ">= 0.8"
},
"description": "Hive Client Web Application",
"homepage": "https://github.com/tagomoris/shib",
"author": "TAGOMORI Satoshi <[email protected]>",
"keywords": [
"hive",
"hadoop"
],
"directories": {
"lib": "./lib",
"views": "./views",
"public": "./public",
"bin": "./bin"
},
"files": [
"README.md",
"app.js",
"config.js"
],
"dependencies": {
"async": ">= 0.1.22",
"bignumber.js": ">= 1.4.1",
"cheerio": ">= 0.17.0",
"csv": ">= 0.0.13",
"express": "~> 3.1.1",
"gcloud": "^0.12.0",
"jade": ">= 0.26.1",
"json-bigint": ">= 0.1.4",
"node-thrift": ">= 1.0.0-dev",
"presto-client": "git://github.com/wyukawa/presto-client-node.git#timezone",
"sqlite3": ">= 2.1.5"
},
"repository": {
"type": "git",
"url": "git://github.com/tagomoris/shib.git"
},
"bugs": {
"url": "https://github.com/tagomoris/shib/issues"
},
"licenses": [
{
"type": "APLv2"
}
],
"scripts": {
"start": "NODE_PATH=lib node app.js",
"test": "NODE_PATH=lib node_modules/nodeunit/bin/nodeunit test/*.js",
"purge": "node bin/purge.js var/database.sqlite3",
"migrate": "node bin/dbmigrate.js var/database.sqlite3"
},
"main": "app.js",
"devDependencies": {
"nodeunit": "~0.8.6"
}
}