-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.34 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.34 KB
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
{
"name": "flvote",
"version": "1.0.0",
"description": "Tweet To Vote on Florida Bills. A Tabs on Tallahassee - Code for Orlando Project",
"main": "index.html",
"engines": {
"node": ">=4.1 <5",
"npm": ">=3.1 <4"
},
"scripts": {
"test": "echo \"Error: no test specified\"",
"build": "echo \"Error: no build specified\"",
"start": "node server.js",
"setupdb": "node database/scripts/setupDb.js",
"resetauthkey": "node database/scripts/resetAuthKey.js",
"generateauthkey": "node database/scripts/generateAuthKey.js",
"sshremoteserver": "node database/scripts/sshremoteserver.js",
"cloneremotedb": "node database/scripts/cloneRemoteDb.js",
"syncbills": "node database/scripts/syncBills.js"
},
"repository": {
"type": "git",
"url": "git+https://grailian@github.com/codehangar/flvote.git"
},
"keywords": [
"codefororlando"
],
"author": "Ian Grail",
"license": "ISC",
"bugs": {
"url": "https://github.com/codehangar/flvote/issues"
},
"homepage": "https://github.com/codehangar/flvote#readme",
"dependencies": {
"apicache": "0.0.12",
"co": "^4.6.0",
"dotenv": "^1.2.0",
"express": "^4.13.3",
"node-uuid": "^1.4.7",
"rethinkdb": "^2.2.1",
"twit": "^2.2.2",
"twitter": "^1.2.5"
},
"devDependencies": {
"chalk": "^1.1.1",
"prompt": "^1.0.0"
}
}