-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
60 lines (60 loc) · 2.08 KB
/
package.json
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
51
52
53
54
55
56
57
58
59
60
{
"name": "@fabric/verse",
"version": "0.1.0-dev",
"description": "p2p game engine",
"main": "scripts/verse.js",
"scripts": {
"build": "node scripts/build.js",
"clean": "rm -f assets/verse.min.js assets/verse.min.map",
"coverage": "c8 npm test",
"demo": "npm run build && http-server assets",
"docs": "npm run make:docs && http-server docs/",
"local": "http-server .",
"make:coverage": "npm run coverage && c8 report --reporter html",
"make:docs": "jsdoc types README.md -c jsdoc.json -d docs",
"report:coverage": "npm run make:coverage && c8 report --reporter=text-lcov > reports/coverage.lcov",
"report:install": "rm -rf node_modules && echo \"\n\" > package-lock.json && echo \"$ npm i\" > reports/install.log && npm i >> reports/install.log",
"report:todo": "grep --exclude-dir=.git --exclude-dir=_book --exclude-dir=assets --exclude-dir=node_modules --exclude-dir=reports --exclude-dir=coverage --exclude-dir=docs -rEI \"TODO|FIXME\" . > reports/TODO.txt",
"reports": "npm run report:install && npm run make:coverage && npm run report:todo",
"start": "npm run clean && npm run build && node scripts/node.js",
"test": "mocha tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FabricLabs/verse.git"
},
"keywords": [
"maki",
"fabric",
"p2p",
"game",
"engine",
"cli",
"terminal",
"console",
"chat"
],
"author": "Eric Martindale",
"license": "MIT",
"bugs": {
"url": "https://github.com/FabricLabs/verse/issues"
},
"homepage": "https://github.com/FabricLabs/verse#readme",
"dependencies": {
"@fabric/core": "FabricLabs/fabric#feature/v0.1.0-RC1",
"@fabric/http": "FabricLabs/fabric-http#feature/graphql",
"@webcomponents/custom-elements": "^1.6.0",
"canvas": "2.11.0",
"dat.gui": "^0.7.9",
"fast-json-patch": "3.1.1",
"is-my-json-valid": "2.20.6",
"three": "0.151.2"
},
"devDependencies": {
"babel-loader": "8.2.5",
"c8": "7.13.0",
"http-server": "^14.1.1",
"jsdoc": "FabricLabs/jsdoc#fabric",
"mocha": "10.2.0"
}
}