forked from owenashurst/agar.io-clone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 2.08 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
{
"name": "agar-clone",
"version": "1.0.0",
"description": "A simple Agar.io clone",
"main": "server/server.js",
"scripts": {
"build": "gulp build",
"start": "gulp run",
"watch": "gulp watch",
"test": "gulp test"
},
"repository": {
"type": "git",
"url": "https://github.com/huytd/agar.io-clone.git"
},
"author": "Huy Tran",
"license": "MIT",
"contributors": [
"Igor Antun <[email protected]> (https://github.com/IgorAntun)",
"Bjarne Oeverli <[email protected]> (https://github.com/bjarneo)",
"Chris Morgan <[email protected]> (https://github.com/drpotato)",
"PET Computação UFPR <[email protected]> (http://pet.inf.ufpr.br)",
"Saren Currie <[email protected]> (https://github.com/SarenCurrie)",
"Nguyen Huu Thanh <[email protected]> (https://github.com/giongto35)",
"Ariamiro <[email protected]> (https://github.com/Ariamiro)",
"VILLERS Mickaël <[email protected]> (https://github.com/villers)",
"Dan Prince <[email protected]> (https://github.com/danprince)",
"Kostas Bariotis <[email protected]> (https://github.com/kbariotis)",
"Jerry Xu <[email protected]> (https://github.com/abalabahaha)",
"Damian Dlugosz <[email protected]> (https://github.com/bigfoot90)",
"Juha Tauriainen <[email protected]> (https://github.com/JuhQ)",
"Madara Uchiha <[email protected]> (https://github.com/MadaraUchiha)",
"Keith Groves <[email protected]> (https://github.com/buskcoin)"
],
"dependencies": {
"babel": "^5.6.14",
"babel-core": "^5.6.15",
"babel-loader": "^5.3.0",
"chai": "^3.0.0",
"express": "^4.12.4",
"gulp": "^3.8.11",
"gulp-babel": "^5.1.0",
"gulp-jshint": "^1.11.0",
"gulp-mocha": "^2.1.2",
"gulp-nodemon": "^2.0.3",
"gulp-uglify": "^1.2.0",
"gulp-util": "^3.0.6",
"jshint": "^2.7.0",
"mocha": "^2.2.5",
"node-libs-browser": "^0.5.2",
"nodemon": "^1.2.1",
"sat": "^0.5.0",
"socket.io": "^1.3.5",
"socket.io-client": "^1.3.5",
"webpack": "^1.10.1",
"webpack-stream": "^2.0.0"
}
}