forked from RanvierMUD/ranviermud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.61 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
{
"name": "ranviermud",
"version": "2.0.0",
"repository": {
"type": "git",
"url": "git://github.com/shawncplus/ranviermud.git"
},
"engines": {
"node": ">= 8.9.4"
},
"license": "MIT",
"scripts": {
"start": "gulp && ./ranvier -v --save=10 --respawn=10",
"test": "gulp && npm run-script test:coverage",
"test:coverage": "istanbul --include-all-sources cover _mocha -- -R dot --recursive ./test/**/*.spec.js",
"build-docs": "jsdoc -c jsdoc.conf",
"bundle-install": "for bundleDir in bundles/*; do (cd $bundleDir; if [ -e package.json ]; then echo \"Updating $bundleDir\"; npm install 2> /dev/null; fi;); done"
},
"dependencies": {
"bcryptjs": "^2.4.0",
"celebrate": "^4.0.1",
"chokidar": "^1.6.1",
"colorize": "",
"commander": "",
"express": "^4.14.0",
"express-jwt": "^5.1.0",
"fs-extra": "^2.0.0",
"humanize-duration": "^3.10.0",
"joi": "^10.2.2",
"js-yaml": "",
"left-pad": "^1.1.3",
"longjohn": "^0.2.11",
"node-uuid": "",
"optimist": "",
"pretty-error": "^2.0.2",
"purdy": "^2.2.0",
"rando-js": "^0.1.1",
"semver": "^5.4.1",
"sprintf-js": "^1.0.3",
"sty": "",
"whitelist-ips": "^1.0.1",
"winston": "^2.3.1",
"wrap-ansi": "^2.0.0",
"yaml": ""
},
"devDependencies": {
"body-parser": "^1.15.2",
"chai": "^3.5.0",
"gulp": "^3.9.1",
"gulp-eslint": "^2.0.0",
"gulp-todo": "^4.1.0",
"istanbul": "^0.4.4",
"jsdoc": "^3.5.5",
"jsonwebtoken": "^7.2.1",
"mocha": "^2.5.3",
"mocha-istanbul": "^0.3.0",
"sinon": "^1.17.5",
"tui-jsdoc-template": "^1.1.0"
}
}