-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
94 lines (94 loc) · 3.04 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "eleven-server",
"version": "0.2.16",
"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]"
},
{
"name": "Kyle Phelps",
"email": "[email protected]"
},
{
"name": "Jim Condren",
"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"
},
"engines": {
"node": "6.x"
},
"dependencies": {
"@slack/rtm-api": "^5.0.3",
"async": "^0.9.0",
"bunyan": "^1.0.1",
"fibers": "^4.0.3",
"gc-stats": "^1.4.0",
"lodash": "^4.17.15",
"lynx": "^0.2.0",
"mathjs": "^3.20.2",
"multitransport-jsonrpc": "^0.9.3",
"murmurhash-js": "^1.0.0",
"nconf": "^0.8.4",
"node-dijkstra": "^2.5.0",
"rethinkdb": "^2.3.1",
"segfault-handler": "^1.3.0",
"slack-node": "^0.2.0",
"token": "0.0.0",
"wait.for": "^0.6.4"
},
"devDependencies": {
"benchmark": "https://github.com/bestiejs/benchmark.js/tarball/master",
"chai": "^1.9.1",
"coveralls": "^3.0.9",
"eslint": "^3.2.2",
"eslint-plugin-lodash": "^1.10.1",
"eslint-plugin-node": "^2.0.0",
"jsdoc": "^3.3.0-alpha9",
"mocha": "^7.0.0",
"rewire": "^2.1.0"
},
"scripts": {
"preproc": "python tools/gsjs-preproc.py",
"start": "NODE_PATH=src node --expose-gc ./src/server.js | node_modules/bunyan/bin/bunyan -o short",
"test": "NODE_PATH=src node_modules/mocha/bin/mocha test/unit --exit",
"functest": "NODE_PATH=src node_modules/mocha/bin/mocha test/func --exit",
"inttest": "NODE_PATH=src node_modules/mocha/bin/mocha test/int --exit",
"alltests": "NODE_PATH=src sh -c 'npm run test -- -R progress && npm run functest -- -R progress && npm run inttest -- -R progress && npm run lint'",
"coverage": "NODE_PATH=src node node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha -- -R progress test/unit test/func",
"coveralls": "NODE_PATH=src node node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha --report lcovonly -- -R progress test/unit test/func && cat coverage/lcov.info | node_modules/coveralls/bin/coveralls.js",
"bench": "NODE_PATH=src node bench/runner.js",
"lint": "node_modules/eslint/bin/eslint.js src test tools",
"docs": "node node_modules/jsdoc/jsdoc.js --destination docs --configure jsdoc-conf.json src",
"repl": "node tools/repl-client.js 7201"
}
}