mirror of
https://github.com/ArnoldSmith86/virtualtabletop.git
synced 2025-01-15 17:02:58 +08:00
72 lines
2.7 KiB
JSON
72 lines
2.7 KiB
JSON
{
|
|
"name": "virtualtabletop",
|
|
"version": "0.5.0",
|
|
"description": "a virtual surface in the browser on which you can play board, dice and card games",
|
|
"main": "server.mjs",
|
|
"type": "module",
|
|
"scripts": {
|
|
"clean": "rm -rf coverage",
|
|
"clobber": "npm clean && rm -rf save",
|
|
"debug": "nodemon -e js,mjs,css,html,json --ignore save/ --ignore coverage/ --ignore tests/ --inspect server.mjs",
|
|
"start": "node server.mjs",
|
|
"stresstest": "node tests/server/loadtest.js",
|
|
"test": "node --experimental-vm-modules node_modules/.bin/jest --coverage",
|
|
"test-debug": "node --experimental-vm-modules --inspect-brk=9239 node_modules/.bin/jest",
|
|
"test-cont": "nodemon -e js,mjs,css,html --ignore save/ --ignore coverage/ --experimental-vm-modules node_modules/.bin/jest",
|
|
"testcafe": "testcafe chrome",
|
|
"testcafe-all": "testcafe chrome tests/testcafe",
|
|
"testcafe-headless": "testcafe chrome:headless",
|
|
"testcafe-headless-all": "testcafe chrome:headless tests/testcafe",
|
|
"testcafe-chromium": "testcafe chromium",
|
|
"testcafe-chromium-all": "testcafe chromium tests/testcafe",
|
|
"testcafe-chromium-headless": "testcafe chromium:headless",
|
|
"testcafe-chromium-headless-all": "testcafe chromium:headless tests/testcafe",
|
|
"testcafe-firefox": "testcafe firefox",
|
|
"testcafe-firefox-all": "testcafe firefox tests/testcafe",
|
|
"testcafe-firefox-headless": "testcafe firefox:headless",
|
|
"testcafe-firefox-headless-all": "testcafe firefox:headless tests/testcafe",
|
|
"testcafe-gitpod": "bash tests/testcafe/gitpod.sh",
|
|
"testcafe-gitpod-all": "bash tests/testcafe/gitpod.sh tests/testcafe"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/ArnoldSmith86/virtualtabletop.git"
|
|
},
|
|
"keywords": [
|
|
"virtual",
|
|
"tabletop",
|
|
"board",
|
|
"card",
|
|
"dice"
|
|
],
|
|
"author": "Castux, ArnoldSmith86, RaphaelAlvez, larkob",
|
|
"license": "GPL-3.0",
|
|
"bugs": {
|
|
"url": "https://github.com/ArnoldSmith86/virtualtabletop/issues"
|
|
},
|
|
"homepage": "https://github.com/ArnoldSmith86/virtualtabletop#readme",
|
|
"dependencies": {
|
|
"@node-minify/clean-css": "^9.0.1",
|
|
"@node-minify/core": "^9.0.2",
|
|
"@node-minify/html-minifier": "^9.0.1",
|
|
"@node-minify/no-compress": "^9.0.1",
|
|
"@node-minify/uglify-es": "^9.0.1",
|
|
"bson": "^6.10.0",
|
|
"crawler-user-agents": "^1.0.154",
|
|
"crc-32": "^1.2.2",
|
|
"dompurify": "^3.2.1",
|
|
"express": "^4.21.1",
|
|
"jszip": "^3.10.1",
|
|
"node-fetch": "^2.7.0",
|
|
"ws": "^8.18.0"
|
|
},
|
|
"devDependencies": {
|
|
"jest": "^29.7.0",
|
|
"jest-environment-jsdom": "^29.7.0",
|
|
"jest-environment-jsdom-global": "^4.0.0",
|
|
"json-diff": "^1.0.6",
|
|
"nodemon": "^3.1.7",
|
|
"testcafe": "^3.7.0"
|
|
}
|
|
}
|