forked from RanvierMUD/trpg-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 814 Bytes
/
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
{
"name": "ranviermud",
"version": "2.0.0",
"repository": {
"type": "git",
"url": "git://github.com/shawncplus/ranviermud.git"
},
"engines": {
"node": ">= 10.12.0"
},
"license": "MIT",
"scripts": {
"start": "node ./ranvier -v --save=10 --respawn=10",
"init": "node ./util/init-bundles.js",
"update-bundle-remote": "node ./util/update-bundle-url.js",
"remove-bundle": "node ./util/remove-bundle.js",
"install-bundle": "node ./util/install-bundle.js"
},
"dependencies": {
"commander": "^2.19.0",
"optimist": "",
"ranvier": "^3.0.5",
"ranvier-datasource-file": "^1.0.3",
"semver": "^5.6.0",
"sprintf-js": "^1.0.3",
"sty": "",
"uuid": "^3.3.2",
"winston": "^2.4.4"
},
"devDependencies": {
"git-url-parse": "^11.1.2"
}
}