papercats/package.json

33 lines
768 B
JSON
Raw Normal View History

{
2019-10-13 12:57:01 -04: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": {
2020-01-28 06:46:14 -05:00
"build": "browserify client.js | terser > 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"
],
2019-10-13 12:57:01 -04:00
"author": "Mimi <stevenjoezhang@gmail.com> https://zhangshuqiao.org",
2019-01-15 10:42:15 -05:00
"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",
2020-02-03 22:08:01 -05:00
"chalk": "^3.0.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",
2020-01-28 06:46:14 -05:00
"terser": "^4.6.3"
2019-01-15 10:42:15 -05:00
}
}