forked from ArnoldSmith86/virtualtabletop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.56 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.56 KB
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
48
49
50
{
"name": "virtualtabletop",
"version": "0.1.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": "NOCOMPRESS=1 npm start",
"start": "nodemon -e js,mjs,css,html --ignore save --ignore coverage --ignore tests server.mjs",
"test": "node --experimental-vm-modules node_modules/.bin/jest --coverage",
"test-cont": "nodemon -e js,mjs,css,html --ignore save --ignore coverage --experimental-vm-modules node_modules/.bin/jest"
},
"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": "^6.2.0",
"@node-minify/core": "^6.2.0",
"@node-minify/html-minifier": "^6.2.0",
"@node-minify/no-compress": "^6.2.0",
"@node-minify/uglify-es": "^6.2.0",
"crc-32": "^1.2.0",
"express": "^4.17.1",
"jszip": "^3.6.0",
"node-fetch": "^2.6.1",
"nodemon": "^2.0.7",
"ws": "^7.4.3"
},
"devDependencies": {
"jest": "^26.6.3",
"jest-environment-jsdom": "^26.6.2",
"jest-environment-jsdom-global": "^2.0.4"
}
}