-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.33 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.33 KB
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
{
"name": "webrcon-cli",
"version": "1.2.2",
"description": "Webrcon-cli allows you to connect webrcon supported servers. Eg. Rust.",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"test": "mocha -r ts-node/register -r source-map-support/register src/**/*.spec.ts",
"cover": "nyc npm test"
},
"bin": {
"webrcon-cli": "dist/bin/webrcon-cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Cultti/webrcon-cli.git"
},
"keywords": [
"webrcon",
"cli",
"rust"
],
"author": "Timo Salola <timo@salola.fi>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Cultti/webrcon-cli/issues"
},
"homepage": "https://github.com/Cultti/webrcon-cli#readme",
"dependencies": {
"@types/ws": "^4.0.1",
"commander": "^2.14.1",
"diff": ">=3.5.0",
"handlebars": "^4.7.6",
"js-yaml": ">=3.13.1",
"lodash": ">=4.17.12",
"ws": "^4.1.0"
},
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/mocha": "^8.0.3",
"@types/sinon": "^4.3.0",
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"istanbul": "^0.4.5",
"mocha": "^8.1.3",
"nyc": "^15.0.0",
"sinon": "^7.2.3",
"source-map-support": "^0.5.3",
"ts-node": "^5.0.1",
"typescript": "^2.7.2"
},
"engines": {
"node": ">=8.9.4"
},
"engineStrict": true
}