-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
51 lines (51 loc) · 1.35 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
{
"name": "ranvier",
"description": "MUD game engine",
"homepage": "https://ranviermud.com",
"bugs": "https://github.com/Ranvier-TS/core-ts/issues",
"license": "MIT",
"author": "Shawn Biddle (http://shawnbiddle.com), Sean O'Donohue, Brian Nelson",
"version": "3.2.2",
"repository": "github:ranvier-ts/core-ts",
"engines": {
"node": ">= 12.18.2"
},
"scripts": {
"test": "nyc --reporter=html --reporter=text --include=src --all mocha --recursive",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"prepare": "npm run build",
"build": "tsc",
"project": "npx tsc -p tsconfig.json",
"watch": "tsc --watch --project tsconfig.json",
"prepublish": "tsc -p tsconfig.json && tsc -p tsconfig-cjs.json"
},
"main": "./dist/cjs/index.js",
"types": "./dist/index.d.ts",
"module": "./dist/esm/index.js",
"directory": [
"./dist/esm"
],
"dependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/js-yaml": "^3.12.5",
"@types/uuid": "^8.3.0",
"@types/winston": "^2.4.4",
"@types/ws": "^7.4.5",
"bcryptjs": "^2.4.0",
"commander": "^4.1.0",
"js-yaml": "^3.12.0",
"pretty-error": "^2.0.2",
"require-dir": "^1.1.0",
"sty": "",
"uuid": "^3.3.2",
"winston": "^2.4.5",
"wrap-ansi": "^2.0.0"
},
"devDependencies": {
"@types/node": "^14.14.2",
"coveralls": "^3.0.2",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"typescript": "^4.4.4"
}
}