Skip to content

Commit 3145612

Browse files
committed
fix package.json spacing
1 parent daa4d5f commit 3145612

File tree

1 file changed

+92
-92
lines changed

1 file changed

+92
-92
lines changed

package.json

Lines changed: 92 additions & 92 deletions
Original file line numberDiff line numberDiff line change
@@ -1,96 +1,96 @@
11
{
2-
"name": "@runejs/server",
3-
"version": "1.0.0-alpha.2",
4-
"description": "A RuneScape game server emulator written in TypeScript.",
5-
"main": "dist/index.js",
6-
"scripts": {
7-
"start": "npm run build && concurrently \"npm run build:watch\" \"npm run start:infra\" \"npm run start:game\"",
8-
"start:game": "nodemon --delay 5000ms --max-old-space-size=2048 dist/server/runner.js -- -game",
9-
"start:game:dev": "npm run build && concurrently \"npm run build:watch\" \"npm run start:game\"",
10-
"start:login": "node --max-old-space-size=1024 dist/server/runner.js -- -login",
11-
"start:update": "node --max-old-space-size=1024 dist/server/runner.js -- -update",
12-
"start:infra": "concurrently \"npm run start:update\" \"npm run start:login\"",
13-
"start:standalone": "concurrently \"npm run start:infra\" \"npm run start:game\"",
14-
"game": "npm run start:game",
15-
"game:dev": "npm run start:game",
16-
"login": "npm run start:login",
17-
"update": "npm run start:update",
18-
"infra": "npm run start:infra",
19-
"standalone": "npm run start:standalone",
20-
"lint": "eslint --ext .ts src",
21-
"lint:fix": "eslint --ext .ts src --fix",
22-
"build:watch": "babel ./src --out-dir dist --extensions \".ts,.tsx,.js\" --source-maps --watch",
23-
"build": "rimraf dist && babel ./src --out-dir dist --extensions \".ts,.tsx,.js\" --source-maps",
24-
"test": "jest"
25-
},
26-
"repository": {
27-
"type": "git",
28-
"url": "git+ssh://[email protected]/runejs/server.git"
29-
},
30-
"keywords": [
31-
"runejs",
32-
"runescape",
33-
"typescript",
34-
"game server",
35-
"game engine"
36-
],
37-
"author": "Tynarus",
38-
"license": "GPL-3.0",
39-
"bugs": {
40-
"url": "https://github.com/runejs/server/issues"
41-
},
42-
"homepage": "https://github.com/runejs/server#readme",
43-
"dependencies": {
44-
"@runejs/common": "^2.0.1",
45-
"@runejs/filestore": "^0.16.0",
46-
"@runejs/login-server": "^2.0.0",
47-
"@runejs/update-server": "^1.3.0",
48-
"bigi": "^1.4.2",
49-
"js-yaml": "^3.14.1",
50-
"json5": "^2.2.0",
51-
"lodash": "^4.17.21",
52-
"quadtree-lib": "^1.0.9",
53-
"rxjs": "^7.5.4",
54-
"source-map-support": "^0.5.19",
55-
"tslib": "^2.3.1",
56-
"uuid": "^3.4.0",
57-
"yargs": "^15.4.1"
58-
},
59-
"devDependencies": {
60-
"@babel/cli": "^7.17.6",
61-
"@babel/core": "^7.17.5",
62-
"@babel/node": "^7.16.8",
63-
"@babel/plugin-proposal-class-properties": "^7.16.7",
64-
"@babel/preset-env": "^7.16.11",
65-
"@babel/preset-typescript": "^7.16.7",
66-
"@runejs/eslint-config": "^1.0.0",
67-
"@types/jest": "^28.1.4",
68-
"@types/js-yaml": "^3.12.7",
69-
"@types/json5": "0.0.30",
70-
"@types/lodash": "^4.14.179",
71-
"@types/node": "^16.11.26",
72-
"@types/uuid": "^3.4.10",
73-
"@types/yargs": "^15.0.14",
74-
"@typescript-eslint/eslint-plugin": "^4.33.0",
75-
"@typescript-eslint/parser": "^4.33.0",
76-
"babel-plugin-module-resolver": "^4.1.0",
77-
"chokidar": "^3.5.3",
78-
"concurrently": "^5.3.0",
79-
"eslint": "^7.32.0",
80-
"jest": "^28.1.2",
81-
"mkdirp": "^1.0.4",
82-
"nodemon": "^2.0.15",
83-
"rimraf": "^3.0.2",
84-
"ts-node": "^10.5.0",
85-
"tsconfig-paths": "^3.12.0",
86-
"typescript": "^4.5.5"
87-
},
88-
"eslintConfig": {
89-
"extends": [
90-
"@runejs/eslint-config"
2+
"name": "@runejs/server",
3+
"version": "1.0.0-alpha.2",
4+
"description": "A RuneScape game server emulator written in TypeScript.",
5+
"main": "dist/index.js",
6+
"scripts": {
7+
"start": "npm run build && concurrently \"npm run build:watch\" \"npm run start:infra\" \"npm run start:game\"",
8+
"start:game": "nodemon --delay 5000ms --max-old-space-size=2048 dist/server/runner.js -- -game",
9+
"start:game:dev": "npm run build && concurrently \"npm run build:watch\" \"npm run start:game\"",
10+
"start:login": "node --max-old-space-size=1024 dist/server/runner.js -- -login",
11+
"start:update": "node --max-old-space-size=1024 dist/server/runner.js -- -update",
12+
"start:infra": "concurrently \"npm run start:update\" \"npm run start:login\"",
13+
"start:standalone": "concurrently \"npm run start:infra\" \"npm run start:game\"",
14+
"game": "npm run start:game",
15+
"game:dev": "npm run start:game",
16+
"login": "npm run start:login",
17+
"update": "npm run start:update",
18+
"infra": "npm run start:infra",
19+
"standalone": "npm run start:standalone",
20+
"lint": "eslint --ext .ts src",
21+
"lint:fix": "eslint --ext .ts src --fix",
22+
"build:watch": "babel ./src --out-dir dist --extensions \".ts,.tsx,.js\" --source-maps --watch",
23+
"build": "rimraf dist && babel ./src --out-dir dist --extensions \".ts,.tsx,.js\" --source-maps",
24+
"test": "jest"
25+
},
26+
"repository": {
27+
"type": "git",
28+
"url": "git+ssh://[email protected]/runejs/server.git"
29+
},
30+
"keywords": [
31+
"runejs",
32+
"runescape",
33+
"typescript",
34+
"game server",
35+
"game engine"
9136
],
92-
"parserOptions": {
93-
"project": "./tsconfig.json"
37+
"author": "Tynarus",
38+
"license": "GPL-3.0",
39+
"bugs": {
40+
"url": "https://github.com/runejs/server/issues"
41+
},
42+
"homepage": "https://github.com/runejs/server#readme",
43+
"dependencies": {
44+
"@runejs/common": "^2.0.1",
45+
"@runejs/filestore": "^0.16.0",
46+
"@runejs/login-server": "^2.0.0",
47+
"@runejs/update-server": "^1.3.0",
48+
"bigi": "^1.4.2",
49+
"js-yaml": "^3.14.1",
50+
"json5": "^2.2.0",
51+
"lodash": "^4.17.21",
52+
"quadtree-lib": "^1.0.9",
53+
"rxjs": "^7.5.4",
54+
"source-map-support": "^0.5.19",
55+
"tslib": "^2.3.1",
56+
"uuid": "^3.4.0",
57+
"yargs": "^15.4.1"
58+
},
59+
"devDependencies": {
60+
"@babel/cli": "^7.17.6",
61+
"@babel/core": "^7.17.5",
62+
"@babel/node": "^7.16.8",
63+
"@babel/plugin-proposal-class-properties": "^7.16.7",
64+
"@babel/preset-env": "^7.16.11",
65+
"@babel/preset-typescript": "^7.16.7",
66+
"@runejs/eslint-config": "^1.0.0",
67+
"@types/jest": "^28.1.4",
68+
"@types/js-yaml": "^3.12.7",
69+
"@types/json5": "0.0.30",
70+
"@types/lodash": "^4.14.179",
71+
"@types/node": "^16.11.26",
72+
"@types/uuid": "^3.4.10",
73+
"@types/yargs": "^15.0.14",
74+
"@typescript-eslint/eslint-plugin": "^4.33.0",
75+
"@typescript-eslint/parser": "^4.33.0",
76+
"babel-plugin-module-resolver": "^4.1.0",
77+
"chokidar": "^3.5.3",
78+
"concurrently": "^5.3.0",
79+
"eslint": "^7.32.0",
80+
"jest": "^28.1.2",
81+
"mkdirp": "^1.0.4",
82+
"nodemon": "^2.0.15",
83+
"rimraf": "^3.0.2",
84+
"ts-node": "^10.5.0",
85+
"tsconfig-paths": "^3.12.0",
86+
"typescript": "^4.5.5"
87+
},
88+
"eslintConfig": {
89+
"extends": [
90+
"@runejs/eslint-config"
91+
],
92+
"parserOptions": {
93+
"project": "./tsconfig.json"
94+
}
9495
}
95-
}
9696
}

0 commit comments

Comments
 (0)