-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 1.96 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "facetmud",
"version": "0.0.1",
"engines": {
"node": ">=12.0.0"
},
"description": "An implementation of the FacetMUD Project in JavaScript",
"main": "./src/index.ts",
"directories": {
"lib": "lib"
},
"scripts": {
"lint": "eslint . --ext .ts",
"start": "ts-node .",
"build": "tsc",
"docs": "typedoc src/",
"test:mocha": "mocha",
"test": "nyc npm run test:mocha",
"posttest": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/facet-mud-project/facetjs.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/facet-mud-project/facetjs/issues"
},
"homepage": "https://gitlab.com/facet-mud-project/facetjs#readme",
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/mocha": "^8.2.0",
"@types/mock-fs": "^4.13.0",
"@types/node": "^16.3.2",
"@types/sinon": "^10.0.2",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"assume": "^2.3.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.26.0",
"eslint-config-godaddy-typescript": "^2.0.1",
"eslint-plugin-json": "^3.0.0",
"eslint-plugin-mocha": "^9.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-tsdoc": "^0.2.14",
"make-promises-safe": "^5.1.0",
"mocha": "^9.0.2",
"mock-fs": "^5.0.0",
"mocked-env": "^1.3.2",
"nyc": "^15.1.0",
"sinon": "^14.0.0",
"ts-node": "^10.1.0",
"typedoc": "^0.21.4",
"typescript": "^4.3.5"
},
"nyc": {
"all": true,
"include": [
"src/**"
],
"exclude": [
"src/index.ts"
],
"reporter": [
"cobertura",
"html",
"lcov",
"text"
]
},
"mocha": {
"extension": [
"ts"
],
"recursive": true,
"spec": "test/**/*.spec.ts",
"require": "ts-node/register"
},
"dependencies": {
"@iarna/toml": "^2.2.5",
"dotenv": "^10.0.0",
"telnet-socket": "^0.2.3"
}
}