-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·64 lines (64 loc) · 1.57 KB
/
package.json
File metadata and controls
executable file
·64 lines (64 loc) · 1.57 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"author": "Idea Haven <greg@ideahaven.co>",
"name": "influence-server",
"description": "API server for the influence app github.com/IdeaHaven/influence",
"version": "0.0.1",
"contributors": [
{
"name": "Gregory Hilkert",
"email": "EpiphanyMachine@gmail.com"
},
{
"name": "Cyd La Luz",
"email": "quetzaluz@gmail.com"
},
{
"name": "Jake McGuire",
"email": "mcguireghs@gmail.com"
},
{
"name": "Josh Sprague",
"email": "jjspragu@asu.edu"
},
{
"name": "Ricky Sidhu",
"email": "riksidhu@gmail.com"
}
],
"repository": {
"type": "git",
"url": "https://github.com/IdeaHaven/influence-server.git"
},
"engines": {
"node": ">=0.8.0"
},
"dependencies": {
"actionHero": "6.2.5",
"orm": "~2.1.0",
"pg": "~2.3.1",
"lodash": "~1.3.1",
"csvtojson": "~0.1.4",
"phantomjs": "~1.9.1-8"
},
"devDependencies": {
"mocha": "~1.12.0",
"winston": "~0.7.2",
"fakeredis": "~0.1.1",
"should": "~1.2.2",
"request": "~2.27.0",
"net": "~1.0.0",
"node-uuid": "~1.4.1",
"mime": "~1.2.11",
"async": "~0.2.9",
"optimist": "~0.6.0",
"data2xml": "~0.9.0",
"browser_fingerprint": "0.0.3"
},
"scripts": {
"start": "node ./node_modules/.bin/actionHero start",
"startCluster": "node ./node_modules/.bin/actionHero startCluster",
"actionHero": "node ./node_modules/.bin/actionHero",
"help": "node ./node_modules/.bin/actionHero help",
"test": "fakeredis=true node ./node_modules/.bin/mocha --reporter spec"
}
}