forked from actionhero/actionhero
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·75 lines (75 loc) · 1.86 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"author": "Evan Tahler <[email protected]>",
"name": "actionhero",
"description": "actionhero.js is a multi-transport API Server with integrated cluster capabilities and delayed tasks",
"version": "9.2.1",
"homepage": "http://actionherojs.com",
"repository": {
"type": "git",
"url": "git://github.com/evantahler/actionhero.git"
},
"main": "actionhero.js",
"keywords": [
"api",
"realtime",
"socket",
"http",
"https",
"web",
"game",
"cluster",
"soa",
"action",
"task",
"delay",
"service",
"tcp"
],
"engines": {
"node": ">=0.10.0"
},
"dependencies": {
"grunt": "~0.4.2",
"browser_fingerprint": "~0.0.4",
"node-resque": "~0.8.3",
"async": "~0.9.0",
"formidable": "~1.0.14",
"mime": "~1.2.11",
"redis": "~0.11.0",
"ws": "~0.4.31",
"optimist": "~0.6.1",
"winston": "0.7.2",
"node-uuid": "~1.4.1",
"fakeredis": "~0.2.0",
"primus": "~2.3.0",
"uglify-js": "~2.4.14"
},
"devDependencies": {
"mocha": "~1.21.3",
"should": "~4.0.1",
"request": "~2.39.0",
"redis-sentinel-client": "latest"
},
"optionalDependencies": {
"grunt-contrib-clean": "~0.5.0",
"grunt-contrib-jshint": "~0.9.2",
"grunt-contrib-uglify": "~0.4.0",
"grunt-project-update": "~0.2.2",
"jshint-stylish": "~0.1.5"
},
"bin": {
"actionhero": "./bin/actionhero"
},
"scripts": {
"postinstall": "echo 'To generate a new actionhero project, run \"node ./node_modules/.bin/actionhero generate\"'",
"help": "node ./bin/actionhero help",
"test": "echo \"** Running with FakeRedis -> `echo $FAKEREDIS` **\" && NODE_ENV=test node ./node_modules/.bin/mocha",
"start": "node ./bin/actionhero"
},
"prepublish": "grunt publish",
"subdomain": "actionhero",
"domains": [
"demo.actionherojs.com",
"actionherojs.com"
]
}