-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.71 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
{
"name": "rpg-lite",
"version": "0.1.0-dev",
"description": "Lightweight version of RPG.",
"main": "types/rpg.js",
"scripts": {
"build": "npm run make:lib && npm run make:app && npm run make:docs",
"coverage": "c8 npm test",
"docs": "npm run make:docs && ecstatic docs",
"examples": "npm run make:examples && ecstatic docs/examples",
"local": "npm run build && ecstatic assets",
"make:app": "webpack scripts/client.js -o assets/scripts/app.js",
"make:docs": "./node_modules/.bin/jsdoc -c jsdoc.json README.md types -d docs",
"make:examples": "docco examples/*.js -o docs",
"make:lib": "webpack -o assets/scripts/rpg.lite.js",
"report:coverage": "c8 report --reporter=text-lcov > reports/coverage.lcov && ./node_modules/.bin/codecov",
"report:install": "rm -rf node_modules && rm package-lock.json && echo \"$ npm i\n\" > reports/install.log && npm i >> reports/install.log",
"start": "node scripts/node",
"test": "npm run build && mocha tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RolePlayGateway/rpg-lite.git"
},
"keywords": [
"rpg",
"fabric",
"game",
"client"
],
"author": "Eric Martindale",
"license": "MIT",
"bugs": {
"url": "https://github.com/RolePlayGateway/rpg-lite/issues"
},
"homepage": "https://github.com/RolePlayGateway/rpg-lite#readme",
"dependencies": {
"@fabric/core": "FabricLabs/fabric#feature/cleanup",
"@fabric/http": "FabricLabs/fabric-http#feature/cleanup",
"@fabric/rpg": "RolePlayGateway/rpg#rpg-0.2.0-develop",
"canvas": "2.10.1"
},
"devDependencies": {
"jsdoc": "FabricLabs/jsdoc#fabric",
"mocha": "10.0.0"
},
"c8": {
"include": "types"
}
}