forked from ElevenGiants/eleven-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.47 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
76
77
{
"name": "eleven-server",
"version": "0.1.8",
"description": "Eleven game server",
"homepage": "http://elevengiants.com/",
"license": "MIT",
"contributors": [
{
"name": "Markus Dolic",
"email": "[email protected]",
"url": "https://twitter.com/ElevenAroha"
},
{
"name": "Joey Thomas",
"email": "[email protected]"
},
{
"name": "Aric Stewart",
"email": "[email protected]"
},
{
"name": "scheijan",
"email": "[email protected]"
},
{
"name": "Justin Patrin",
"email": "[email protected]"
}
],
"author": "Markus Dolic <[email protected]> (https://twitter.com/ElevenAroha)",
"repository": {
"type": "git",
"url": "https://github.com/ElevenGiants/eleven-server.git"
},
"main": "src/server.js",
"directories": {
"test": "test"
},
"dependencies": {
"async": "^0.9.0",
"bunyan": "^1.0.1",
"harmony-reflect": "^1.1.1",
"lodash": "^2.4.1",
"lynx": "^0.2.0",
"memwatch": "^0.2.2",
"multitransport-jsonrpc": "^0.7.2",
"murmurhash-js": "^1.0.0",
"nconf": "^0.6.9",
"node_amf_cc": "^1.1.1",
"rethinkdb": "^1.15.0-0",
"slack-client": "^1.2.2",
"token": "0.0.0",
"wait.for": "^0.6.4"
},
"devDependencies": {
"benchmark": "https://github.com/bestiejs/benchmark.js/tarball/master",
"chai": "^1.9.1",
"jscs": "^1.8.1",
"jscs-jsdoc": "^0.3.2",
"jsdoc": "^3.3.0-alpha9",
"jshint": "^2.5.5",
"mocha": "^1.20.1",
"rewire": "^2.1.0"
},
"scripts": {
"preproc": "python tools/gsjs-preproc.py",
"start": "NODE_PATH=src node --harmony --expose-gc ./src/server.js | node_modules/bunyan/bin/bunyan -o short",
"test": "NODE_PATH=src node_modules/mocha/bin/mocha --harmony test/unit",
"functest": "NODE_PATH=src node_modules/mocha/bin/mocha --harmony test/func",
"inttest": "NODE_PATH=src node_modules/mocha/bin/mocha --harmony test/int",
"alltests": "NODE_PATH=src sh -c 'npm run lint && npm run test -- -R progress && npm run functest -- -R progress && npm run inttest -- -R progress'",
"bench": "NODE_PATH=src node --harmony bench/runner.js",
"lint": "node_modules/jshint/bin/jshint --verbose --exclude src/gsjs src test tools && node_modules/jscs/bin/jscs --verbose --reporter inline src test tools",
"docs": "node node_modules/jsdoc/jsdoc.js --destination docs --configure jsdoc-conf.json src",
"repl": "node tools/repl-client.js 7201"
}
}