-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
47 lines (47 loc) · 1.14 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
{
"name": "Soccer.js",
"version": "1.0.0",
"description": "Simple haxball clone written in ES6",
"main": "server/player.js",
"scripts": {
"start": "node --harmony-destructuring server/player.js",
"watch": "nodemon --harmony-destructuring server/player.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Mati365/Soccer.js"
},
"keywords": [
"haxball",
"soccer",
"es6",
"multiplayer"
],
"author": "Mateusz Bagiński",
"license": "MIT",
"bugs": {
"url": "https://github.com/Mati365/Soccer.js/issues"
},
"homepage": "https://github.com/Mati365/Soccer.js#readme",
"dependencies": {
"blueimp-md5": "^2.1.0",
"chalk": "^1.1.1",
"geoip-lite": "^1.1.6",
"jquery": "^2.1.4",
"lodash": "^4.0.0",
"request": "^2.69.0",
"socket.io": "^1.3.7",
"socket.io-client": "^1.3.7",
"validate.js": "^0.9.0"
},
"devDependencies": {
"babel-preset-es2015": "^6.3.13",
"babelify": "^7.2.0",
"browserify": "^12.0.1",
"gulp": "^3.9.0",
"gulp-babel": "^6.1.1",
"gulp-uglify": "^1.5.1",
"gulp-util": "^3.0.7",
"vinyl-source-stream": "^1.1.0"
}
}