This repository has been archived by the owner on Oct 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
55 lines (55 loc) · 1.56 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
{
"name": "pinwheel",
"version": "0.5.0",
"description": "A highly opinionated fork of the Ranvier MUD engine.",
"author": "Andrew Zigler <[email protected]> (https://www.andrewzigler.com)",
"license": "MIT",
"private": true,
"repository": "azigler/pinwheel",
"engines": {
"node": ">= 8.9.4"
},
"scripts": {
"start": "gulp && ./pinwheel",
"dev": "./pinwheel --loglevel none --no-grapevine",
"istanbul": "istanbul --include-all-sources cover _mocha -- -R dot --recursive ./test/**/*.spec.js",
"test": "gulp && npm run-script istanbul",
"build-docs": "jsdoc -c jsdoc.conf",
"bundle-install": "node setup-bundles",
"postinstall": "npm run-script bundle-install",
"clean-areas": "gulp clean-areas",
"clean-bugs": "gulp clean-bugs",
"clean-logs": "gulp clean-logs",
"clean-all": "gulp clean-all"
},
"dependencies": {
"bcryptjs": "^2.4.0",
"chalk": "^2.4.2",
"commander": "^2.20.0",
"express": "^4.21.0",
"humanize-duration": "^3.20.1",
"js-yaml": "^3.13.1",
"optimist": "^0.6.1",
"pretty-error": "^2.0.2",
"rando-js": "^0.1.1",
"semver": "^5.7.2",
"sprintf-js": "^1.1.2",
"sty": "^0.6.1",
"uuid": "^3.3.3",
"winston": "^2.4.4",
"wrap-ansi": "^2.0.0",
"yaml": "^1.6.0"
},
"devDependencies": {
"chai": "^3.5.0",
"gulp": "^5.0.0",
"gulp-eslint": "^5.0.0",
"gulp-todo": "^4.1.0",
"istanbul": "^0.4.5",
"jsdoc": "^3.6.3",
"mocha": "^5.2.0",
"mocha-istanbul": "^0.3.0",
"sinon": "^1.17.5",
"tui-jsdoc-template": "^1.2.2"
}
}