forked from owenashurst/agar.io-clone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.51 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
{
"name": "agar-clone",
"version": "1.0.0",
"description": "A simple Agar.io clone",
"main": "server/server.js",
"scripts": {
"postinstall": "node ./node_modules/bower/bin/bower install && node ./node_modules/gulp/bin/gulp.js build",
"start": "node ./node_modules/gulp/bin/gulp.js run",
"watch": "node ./node_modules/gulp/bin/gulp.js watch",
"test": "node ./node_modules/jshint/bin/jshint ."
},
"author": "Huy Tran",
"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)"
],
"dependencies": {
"bower": "^1.4.1",
"express": "^4.12.4",
"sat": "^0.5.0",
"socket.io": "^1.3.5"
},
"devDependencies": {
"gulp": "^3.8.11",
"gulp-babel": "^5.1.0",
"gulp-jshint": "^1.11.0",
"gulp-nodemon": "^2.0.3",
"jshint": "^2.7.0",
"nodemon": "^1.2.1"
}
}