papercats/package.json

33 lines
741 B
JSON
Raw Normal View History

{
2019-01-16 00:53:31 -05:00
"name": "Paper-io",
2019-01-15 10:42:15 -05:00
"version": "0.0.1",
"description": "An multiplayer-IO type game (cloned from Paper-IO)",
2019-01-16 00:53:31 -05:00
"main": "server.js",
2019-01-15 10:42:15 -05:00
"scripts": {
2019-03-06 22:05:56 -05:00
"start": "node server.js",
2019-04-18 12:42:20 -04:00
"build": "browserify client.js | uglifyjs > public/js/bundle.js"
2019-01-15 10:42:15 -05:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/stevenjoezhang/paper.io.git"
},
"keywords": [
"Paper-IO",
"IO",
"Game"
],
"author": "theKidOfArcrania",
"license": "MIT",
"bugs": {
"url": "https://github.com/stevenjoezhang/paper.io/issues"
},
"homepage": "https://github.com/stevenjoezhang/paper.io",
"dependencies": {
2019-09-26 06:49:18 -04:00
"browserify": "^16.5.0",
2019-07-29 20:20:26 -04:00
"express": "^4.17.1",
2019-09-26 06:49:18 -04:00
"socket.io": "^2.3.0",
"socket.io-client": "^2.3.0",
2019-03-06 22:05:56 -05:00
"uglify-es": "^3.3.9"
2019-01-15 10:42:15 -05:00
}
}