-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
68 lines (68 loc) · 1.75 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
{
"name": "@fabric/rpg",
"version": "0.1.0-dev",
"description": "RPG is a template for building role-playing games.",
"main": "types/rpg.js",
"scripts": {
"build": "webpack",
"coverage": "nyc report --reporter html npm test",
"dev": "webpack-dev-server",
"docs": "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 build && node rpg.js",
"test": "nyc mocha tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FabricLabs/rpg.git"
},
"keywords": [
"rpg",
"fabric",
"game"
],
"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#pruning",
"@fabric/http": "FabricLabs/web#fabric-0.1.0",
"body-parser": "^1.18.3",
"dotparser": "^0.4.0",
"express": "^4.16.4",
"express-session": "^1.15.6",
"level-browserify": "^2.0.0",
"peer": "^0.2.10",
"peerjs": "^0.3.18",
"ws": "^6.1.2"
},
"devDependencies": {
"codecov": "^3.2.0",
"ecstatic": "^3.3.0",
"jsdoc": "FabricLabs/jsdoc",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"source-map": "^0.7.3",
"webpack": "^4.27.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10"
},
"nyc": {
"include": [
"components/*.js",
"types/*.js"
],
"exclude": [
"tests"
],
"report-dir": "./reports/code-coverage"
}
}