This repository has been archived by the owner on May 2, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.62 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
{
"name": "@inexorgame/inexor-flex",
"version": "0.9.35",
"description": "Scripting environment for Inexor.",
"scripts": {
"postinstall": "node postinstall.js",
"preuninstall": "node preuninstall.js",
"start": "node server/index.js --profile $npm_package_config_profile",
"stop": "./inexor.js flex shutdown",
"restart": "./inexor.js flex restart",
"test": "mocha \"src/!(node_modules)/test/*.js\" \"server/test/*.js\" \"server/!(node_modules)/!(node_modules)/test/*.js\" --harmony",
"docs": "jsdoc -c .jsdoc.json",
"lint": "eslint .",
"dev": "node server/index.js --profile=devenv",
"server": "node server/index.js --profile=server",
"shell": "node inexor.js shell",
"depcheck": "node depcheck.js"
},
"bin": {
"inexor-flex": "inexor.js"
},
"repository": "git+https://github.com/inexorgame/inexor-flex.git",
"keywords": [
"inexor",
"gaming"
],
"author": "The Inexor Team",
"license": "Zlib",
"bugs": {
"url": "https://github.com/inexorgame/inexor-core/issues"
},
"homepage": "https://github.com/inexorgame/inexor-flex#readme",
"engines": {
"node": ">=8.9.0",
"yarn": ">=1.3.2"
},
"dependencies": {
"shelljs": "0.8.1",
"wait-on": "^2.1.0",
"yargs": "^10.1.0"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"chai-iterator": "^1.1.4",
"debug": "^3.1.0",
"dependency-check": "3.1.0",
"eslint": "^4.18.0",
"eslint-plugin-security": "^1.4.0",
"jsdoc": "^3.5.5",
"mocha": "^5.0.1",
"mocha-junit-reporter": "^1.17.0",
"tui-jsdoc-template": "^1.2.2"
},
"fileDependencies": {
"@inexorgame/api": "./server/api/",
"@inexorgame/server": "./server/",
"@inexorgame/servercmd": "./server/commands/",
"@inexorgame/console": "./src/console/",
"@inexorgame/context": "./src/context/",
"@inexorgame/entities": "./src/entities/",
"@inexorgame/gameclient": "./src/gameclient/",
"@inexorgame/gameserver": "./src/gameserver/",
"@inexorgame/instances": "./src/instances/",
"@inexorgame/interfaces": "./src/interfaces/",
"@inexorgame/logger": "./server/util/logger/",
"@inexorgame/logging": "./src/logging/",
"@inexorgame/media": "./src/media/",
"@inexorgame/path": "./server/util/path/",
"@inexorgame/profiles": "./src/profiles/",
"@inexorgame/releases": "./src/releases/",
"@inexorgame/tree": "./src/tree/",
"@inexorgame/treeclient": "./src/treeclient/",
"@inexorgame/types": "./src/types/"
},
"config": {
"profile": "client"
},
"private": false,
"resolutions": {
"hoek": ">=5.0.3",
"isarray": ">=2.0.4"
}
}