forked from RolePlayGateway/rpg-lite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.24 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
{
"name": "rpg-lite",
"version": "0.1.0-dev",
"description": "Lightweight version of RPG.",
"main": "types/rpg.js",
"scripts": {
"build": "webpack -o assets/scripts/rpg.lite.js",
"coverage": "nyc npm test",
"docs": "npm run make:docs && ecstatic docs",
"examples": "npm run make:examples && ecstatic docs/examples",
"make:docs": "./node_modules/.bin/jsdoc -c jsdoc.json README.md types -d docs",
"make:examples": "docco examples/*.js -o docs",
"start": "node scripts/node",
"test": "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#fabric-0.1.0-develop",
"jsdocs": "^1.0.0"
},
"devDependencies": {
"docco": "^0.8.0",
"ecstatic": "^4.1.2",
"jsdoc": "FabricLabs/jsdoc#fabric",
"mocha": "^6.2.2",
"nyc": "^14.1.1",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"yarn": "^1.19.1"
}
}