papercats/package.json

38 lines
900 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-03-04 22:54:21 -05:00
"build": "browserify client.js | terser > public/js/bundle.js",
"build-dev": "watchify client.js -o 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": {
2020-02-03 22:08:01 -05:00
"chalk": "^3.0.0",
2019-07-29 20:20:26 -04:00
"express": "^4.17.1",
2020-03-04 07:25:32 -05:00
"jquery": "^3.4.1",
2019-09-26 06:49:18 -04:00
"socket.io": "^2.3.0",
2020-03-04 07:03:59 -05:00
"socket.io-client": "^2.3.0"
},
"devDependencies": {
"browserify": "^16.5.0",
2020-03-04 22:54:21 -05:00
"terser": "^4.6.3",
"watchify": "^3.11.1"
2019-01-15 10:42:15 -05:00
}
}