forked from actionhero/actionhero
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.91 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
{
"author": "Evan Tahler <[email protected]>",
"name": "actionhero",
"description": "actionhero.js is a multi-transport API Server with integrated cluster capabilities and delayed tasks",
"version": "13.2.3",
"homepage": "http://www.actionherojs.com",
"license": "Apache-2.0",
"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": ">=4.0.0"
},
"dependencies": {
"async": "^1.5.0",
"browser_fingerprint": "^0.0.6",
"fakeredis": "^1.0.0",
"formidable": "^1.0.17",
"i18n": "^0.8.1",
"ioredis": "^1.10.0",
"is-running": "^2.0.0",
"mime": "^1.3.4",
"node-resque": "^2.0.0",
"node-uuid": "^1.4.4",
"optimist": "^0.6.1",
"primus": "^5.0.1",
"qs": "^6.0.1",
"uglify-js": "^2.6.0",
"winston": "^2.0.0",
"ws": "^1.0.1"
},
"devDependencies": {
"mocha": "^2.3.3",
"should": "^8.0.2",
"request": "^2.65.0",
"coveralls": "^2.11.4",
"istanbul": "^0.4.0",
"eslint": "^2.3.0"
},
"optionalDependencies": {},
"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": "node test.js",
"test:travis": "NODE_ENV=test ./node_modules/istanbul/lib/cli.js cover ./node_modules/.bin/_mocha",
"coverage": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"start": "node ./bin/actionhero",
"site": "cd site && EXECJS_RUNTIME=Node bundle exec middleman",
"site:publish": "cd site && ./deploy.sh",
"postpublish": "npm run-script site:publish"
}
}