forked from FabricLabs/rpg
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
76 lines (76 loc) · 2.25 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@fabric/rpg",
"version": "0.2.0-dev",
"description": "RPG is a template for building role-playing games.",
"main": "types/rpg.js",
"scripts": {
"agents": "node scripts/agents.js",
"build:scripts": "webpack scripts/rpg.js",
"build:ui": "cd components/semantic && gulp build && cp dist/semantic.js ../../assets/scripts/semantic.js && cp dist/semantic.css ../../assets/styles/semantic.css && cd ../..",
"build": "npm run compile",
"compile": "node scripts/build.js && npm run build:scripts",
"coverage": "nyc report --reporter html npm test",
"dev": "webpack-dev-server assets",
"docs": "npm run build && jsdoc -c jsdoc.json types README.md -d docs && ecstatic docs",
"report:coverage": "nyc report --reporter=text-lcov > reports/coverage.lcov && codecov",
"review:coverage": "npm run coverage && ecstatic reports/code-coverage",
"start": "npm run compile && node scripts/node.js",
"static": "npm run build && ecstatic assets",
"test": "nyc mocha tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FabricLabs/rpg.git"
},
"keywords": [
"bitcoin",
"fabric",
"game",
"rpg"
],
"author": "Fabric Labs",
"contributors": [
"Alexey Melnichenko",
"Eric Martindale"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/FabricLabs/rpg/issues"
},
"homepage": "https://github.com/FabricLabs/rpg#readme",
"dependencies": {
"@fabric/core": "FabricLabs/fabric#master",
"@fabric/http": "FabricLabs/fabric-http#master",
"body-parser": "^1.18.3",
"dotparser": "^0.4.0",
"express": "^4.16.4",
"express-session": "^1.15.6",
"fomantic-ui-css": "^2.8.3",
"peer": "^0.2.10",
"peerjs": "^0.3.18",
"phaser": "2.6.2",
"pixel-editor": "^0.2.0",
"semantic-ui-react": "^0.88.2",
"ws": "^6.1.2"
},
"devDependencies": {
"codecov": "^3.2.0",
"ecstatic": "^3.3.0",
"jsdoc": "FabricLabs/jsdoc",
"mocha": "10.0.0",
"source-map": "^0.7.3",
"webpack": "^4.27.1",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.1.10"
},
"nyc": {
"include": [
"components/*.js",
"types/*.js"
],
"exclude": [
"tests"
],
"report-dir": "./reports/code-coverage"
}
}