forked from towerstorm/game
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.25 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 3.25 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
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
95
96
97
98
99
100
{
"name": "towerstorm",
"version": "0.1.0",
"description": "Moddable multiplayer tower defense",
"private": true,
"main": "index.js",
"engines": {
"node": "4.7.x",
"npm": "2.15.x"
},
"repository": {
"type": "git",
"url": "git+ssh://git@bitbucket.org/towerstorm/game.git"
},
"author": "Tim Robinson",
"license": "Apache-2.0",
"homepage": "http://towerstorm.com",
"scripts": {
"dev-debug": "DEBUG=* NODE_ENV=development node ./index.js",
"dev": "NODE_ENV=development node ./index.js",
"prod": "./start-prod.sh",
"start": "NODE_ENV=development node ./index.js",
"init": "./init.sh",
"test-botmanager": "NODE_ENV=development ./node_modules/mocha/bin/mocha --reporter min --slow 10 --compilers coffee:coffee-script/register --require coffee-errors ./botmanager/test/_helper $(find ./botmanager/test/unit -name '*.coffee')",
"test-game": "NODE_ENV=development ./node_modules/mocha/bin/mocha --reporter min --slow 10 --compilers coffee:coffee-script/register --require coffee-errors ./game/test/_helper $(find ./game/test/unit -name '*.coffee')",
"test-gameserver": "NODE_ENV=development ./node_modules/mocha/bin/mocha --reporter min --slow 10 --compilers coffee:coffee-script/register --require coffee-errors ./gameserver/test/_helper $(find ./gameserver/test/unit -name '*.coffee')"
},
"dependencies": {
"app-module-path": "^1.0.5",
"async": "~0.9.0",
"body-parser": "^1.14.2",
"browserify": "^14.0.0",
"browserify-middleware": "^7.1.0",
"coffee-script": "~1.9.2",
"connect": "^2.23.0",
"connect-assets": "~2.5.2",
"connect-coffee-script": "~0.1.3",
"connect-redis": "^2.1.0",
"cookie": "~0.1.2",
"cookie-parser": "^1.3.2",
"debug": "~2.1.1",
"dogapi": "~0.1.8",
"easy-pbkdf2": "^0.1.1",
"errorhandler": "^1.4.2",
"express": "^4.8.7",
"express-error-handler": "^0.5.4",
"express-json": "^1.0.0",
"express-namespace": "^0.1.1",
"express-session": "^1.7.6",
"extend": "~1.2.1",
"inline-mocha": "^1.0.0",
"jade": "^1.3.1",
"less": "~1.3.3",
"lodash": "^4.17.4",
"node-dogstatsd": "0.0.6",
"node-uuid": "~1.4.1",
"oberr": "0.0.2",
"passport": "^0.2.0",
"passport-local": "~1.0.0",
"randomstring": "~1.0.3",
"redis": "^0.10.3",
"request": "2.27.0",
"require-glob": "^3.2.0",
"require-globify": "^1.3.0",
"respawn": "^2.1.0",
"rethinkdb": "^2.2.1",
"socket.io": "^0.9.17",
"socket.io-client": "^0.9.17",
"validator": "^3.13.0",
"winston": "^0.7.3",
"xmlhttprequest": "^1.6.0",
"zeparser": "0.0.7"
},
"devDependencies": {
"cheerio": "^0.17.0",
"coffee-errors": "~0.8.6",
"coffee-loader": "^0.7.2",
"coffeeify": "^0.7.0",
"del": "^2.2.0",
"glob-loader": "^0.3.0",
"gulp": "^3.9.0",
"gulp-coffee": "^2.3.1",
"gulp-concat": "^2.6.0",
"gulp-less": "^3.0.5",
"gulp-minify-css": "^1.2.3",
"gulp-rsync": "0.0.5",
"gulp-run-sequence": "^0.3.2",
"longjohn": "^0.2.4",
"mocha": "~2.2.5",
"nock": "^0.48.1",
"ping": "^0.1.8",
"protractor": "^1.2.0",
"proxyquire": "~0.4.1",
"sinon": "^1.10.2",
"supertest": "^0.9.2",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"webpack": "^2.2.1"
}
}