-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
92 lines (92 loc) · 2.87 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
86
87
88
89
90
91
92
{
"name": "legendofmountainsea",
"version": "0.0.1",
"description": "4X sandbox game with Mountain & Sea Classics",
"private": true,
"main": "index.html",
"window": {
"title": "loms",
"icon": "LOMS.png",
"frame": false
},
"chromium-args": "--disable-raf-throttling",
"scripts": {
"build-client": "webpack --config config/webpack.client.js",
"build-prod": "webpack --config config/webpack.prod.js",
"dev": "webpack-dev-server --open --config config/webpack.dev.js",
"doc": "./node_modules/.bin/jsdoc src -c ./docs/jsdoc.json -t ./node_modules/@pixi/jsdoc-template -R README.md -r -d docs",
"flow": "flow",
"lint": "eslint --ext .js src",
"lint-fix": "eslint --ext .js src --fix",
"run-mac": "./nwjs-sdk-v0.41.3-osx-x64/nwjs.app/Contents/MacOS/nwjs .",
"run-win": "nwjs-sdk-v0.41.3-win-x64\\nw.exe .",
"run-linux": "./nwjs-sdk-v0.41.3-linux-x64/nw .",
"start-linux": "npm run build-client && npm run run-linux",
"start-mac": "npm run build-client && npm run run-mac",
"start-win": "npm run build-client && npm run run-win",
"test": "npm run unit-testing && npm run flow check && npm run lint && npm run build-prod",
"unit-testing": "mocha test/**/*.test.js --require @babel/register"
},
"prettier": {
"useTabs": true,
"tabWidth": 4,
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": true,
"arrowParens": "always",
"parser": "flow"
},
"author": "Tyreal Gray",
"license": "GPL-2.0",
"devDependencies": {
"@babel/core": "7.4.5",
"@babel/plugin-proposal-class-properties": "7.4.4",
"@babel/plugin-proposal-object-rest-spread": "7.4.4",
"@babel/polyfill": "7.4.4",
"@babel/preset-env": "7.4.5",
"@babel/preset-flow": "7.0.0",
"@babel/register": "7.4.4",
"@pixi/jsdoc-template": "2.4.2",
"babel-eslint": "10.0.1",
"babel-loader": "8.0.6",
"circular-dependency-plugin": "5.0.2",
"core-js": "3.1.4",
"eslint": "5.16.0",
"expect.js": "0.3.1",
"flow-bin": "0.98.1",
"html-es6-template-loader": "1.0.5",
"jsdoc": "^3.6.3",
"jsdoc-babel": "0.5.0",
"mocha": "6.1.4",
"prettier": "1.17.0",
"webpack": "4.35.0",
"webpack-cli": "3.3.4",
"webpack-dev-server": "^3.5.1",
"webpack-merge": "4.2.1"
},
"dependencies": {
"bootstrap": "4.3.1",
"colyseus.js": "0.10.7",
"jquery": "3.5.0",
"loms.perlin": "1.0.2",
"loms.server": "0.0.2",
"loms.uuid": "1.0.0",
"pixi.js": "5.1.0",
"popper.js": "1.15.0"
},
"optionalDependencies": {
"7zip-bin-mac": "1.0.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TyrealGray/LegendOfMountainSea.git"
},
"keywords": [
"javascript",
"nodejs"
],
"bugs": {
"url": "https://github.com/TyrealGray/LegendOfMountainSea/issues"
},
"homepage": "https://github.com/TyrealGray/LegendOfMountainSea#readme"
}