-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
62 lines (62 loc) · 1.6 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
{
"name": "w3ghost",
"version": "0.2.0",
"description": "Warcraft 3 Game Host",
"main": "lib/GHost.js",
"bin": {
"w3host": "./bin/w3host",
"w3proxy": "./bin/w3proxy"
},
"engines": {
"node": "10.x"
},
"dependencies": {
"@types/ffi-napi": "2.4.3",
"bufferpack": "^0.0.6",
"chalk": "4.1.0",
"crc": "^3.8.0",
"debug": "4.1.1",
"ffi-napi": "3.0.1",
"hex": "^0.1.0",
"ip": "^1.1.3",
"ref-array-napi": "*",
"ref-napi": "3.0.1",
"ref-struct-napi": "*",
"yargs": "^5.0.0"
},
"devDependencies": {
"@types/node": "12.0.10",
"eslint": "7.7.0",
"eslint-config-airbnb": "18.2.0",
"eslint-config-es": "3.19.67",
"eslint-plugin-extended": "^0.2.0",
"eslint-plugin-mocha": "^4.5.1",
"ts-node": "9.0.0",
"typescript": "4.0.2"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "ts-node ./src/cli/host.ts --config=./config.json",
"debug": "node --inspect -r ts-node/register ./src/cli/host.ts --config=./config.json",
"dev": "env GHOST_DEBUG=hex,log ts-node ./src/cli/host.ts --config=./config.json",
"test-run": "env NODE_ENV=test ts-node ./src/cli/host.ts --config=./test_config.json",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "https://github.com/w3gh/ghost.js.git"
},
"keywords": [
"w3gh",
"ghost++",
"host",
"war3"
],
"author": "Nikolay Kostyurin <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/w3gh/ghost.js/issues"
},
"homepage": "https://github.com/w3gh/ghost.js",
"engine-strict": true
}