-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
89 lines (89 loc) · 2.75 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
{
"name": "flatworld",
"description": "Game engine for 2D turn-based strategy games in browsers",
"keywords": [
"2D game engine",
"game-engine",
"game engine",
"HTML5 game engine",
"turn-based strategy game",
"turn-based",
"multiplayer",
"singleplayer",
"cooperative",
"strategy",
"game",
"webGL",
"canvas",
"HTML5"
],
"engines": {
"node": ">=10.8.0"
},
"version": "0.7.1",
"module": "src/bundle.js",
"main": "src/bundle.js",
"browser": "src/bundle.js",
"author": "Janne Hyytiä",
"license": "mit",
"repository": {
"type": "git",
"url": "https://github.com/Hachitus/flatworld.git"
},
"bugs": {
"url": "https://github.com/Hachitus/flatworld/issues"
},
"homepage": "https://github.com/Hachitus/flatworld",
"scripts": {
"build:dev": "npx webpack --config webpack.config.dev.js",
"start": "npm run start:dev",
"start:dev": "npm run build:dev && npx webpack serve --config webpack.config.dev.js",
"build": "npm run build:prod",
"build:prod": "npx webpack --config webpack.config.prod.js",
"start:prod": "npm run build:prod && npx webpack serve --config webpack.config.prod.js",
"nextVersion": "echo 'MANUAL: npm version patch/minor/major && git tag -a ?.?.? -m 'comment' && git push --tags && update CHANGELOG && update roadmap if needed'",
"document": "npx yuidoc -t node_modules/yuidoc-theme-blue && gh-pages -d documentation",
"showDocuments": "echo 'starting instance in http://localhost:9002/' && npx forever start startDocument.js --uid flatworldDocument",
"test": "npx karma start karma.conf.js --log-level debug",
"init": "ln -s /usr/bin/nodejs /usr/bin/node && npm install",
"lint": "npx eslint ./src/",
"prepublishOnly": "npm run build:prod",
"pack:dev": "npm run build & npm pack"
},
"dependencies": {
"@icetee/handlebars-loader": "1.6.0",
"edge-launcher": "1.2.2",
"esm": "3.2.25",
"eventemitter3": "4.0.7",
"hammerjs": "2.0.8",
"hamsterjs": "1.1.3",
"handlebars": "4.7.7",
"handlebars-loader": "1.7.1",
"howler": "2.2.1",
"javascript-state-machine": "3.1.0",
"loglevel": "1.7.1",
"nvm": "0.0.4",
"pixi.js": "6.0.4",
"whatwg-fetch": "3.6.2"
},
"devDependencies": {
"eslint": "7.28.0",
"eslint-loader": "4.0.2",
"express": "4.17.1",
"gh-pages": "3.2.0",
"jasmine": "3.7.0",
"jasmine-core": "3.7.1",
"karma": "6.3.3",
"karma-chrome-launcher": "3.1.0",
"karma-firefox-launcher": "2.1.1",
"karma-jasmine": "4.0.1",
"karma-safari-launcher": "1.0.0",
"karma-webpack": "5.0.0",
"sinon": "11.1.1",
"util": "0.12.4",
"webpack": "5.38.1",
"webpack-cli": "4.7.2",
"webpack-dev-server": "3.11.2",
"yuidocjs": "0.10.2"
}
}