forked from excaliburjs/Excalibur
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
130 lines (130 loc) · 5.08 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "excalibur",
"sideEffects": false,
"version": "0.27.0",
"exNextVersion": "0.28.0",
"description": "Excalibur.js is a simple JavaScript game engine with TypeScript bindings for making 2D games in HTML5 Canvas. Our mission is to make web game development as simple as possible.",
"author": "https://github.com/excaliburjs/Excalibur/graphs/contributors",
"homepage": "https://github.com/excaliburjs/Excalibur",
"main": "build/dist/excalibur.min.js",
"typings": "build/dist/excalibur.d.ts",
"module": "build/esm/excalibur.js",
"repository": {
"type": "git",
"url": "git://github.com/excaliburjs/Excalibur.git"
},
"bugs": {
"url": "https://github.com/excaliburjs/Excalibur/issues"
},
"license": "BSD-2-Clause",
"keywords": [
"excalibur",
"game",
"engine",
"typescript",
"javascript",
"simple"
],
"scripts": {
"all": "npm run lint && npm run core && npm run build:esm && npm run test && npm run legacy-visual",
"all:ci": "npm run lint && npm run core && npm run build:esm && npm run test:ci && npm run legacy-visual",
"clean": "rimraf .tsbuildinfo ./build/dist ./build ./src/spec/*.js ./src/spec/*.map",
"linux:ci": "npm run clean && npm run all:ci && npm run coveralls && npm run apidocs",
"appveyor": "npm run all:ci && npm run nuget 0.0.1",
"browserstack": "karma start karma.conf.browsers.js",
"nuget": ".\\src\\tools\\NuGet.exe pack Excalibur.nuspec -OutputDirectory .\\build\\dist -version",
"start": "npm run core:watch",
"build": "npm run core",
"build:esm": "npm run core:bundle:esm",
"core": "npm run core:tsc && npm run core:copy && npm run core:bundle",
"core:tsc": "tsc --project src/engine/tsconfig.json --incremental true --tsBuildInfoFile .tsbuildinfo && node ./scripts/excalibur-version.js",
"core:copy": "copyfiles -u 2 ./src/engine/**/*.png ./src/engine/**/*.css ./src/engine/**/*.glsl ./build/dist/",
"core:bundle": "webpack --progress --config webpack.config.js --mode production",
"core:bundle:esm": "webpack --progress --config webpack.config.js --mode production --env output=esm",
"core:watch": "npm run core:bundle -- --watch",
"lint": "npm run eslint && npm run eslint:spec",
"eslint": "eslint \"src/engine/**/*.ts\"",
"eslint:sandbox": "eslint \"sandbox/**/*.ts\"",
"eslint:spec": "eslint \"src/spec/**/*.ts\"",
"visual": "start-storybook",
"build-storybook": "build-storybook -o build-storybook",
"sandbox:copy": "copyfiles -u 2 \"./build/dist/**/*.*\" \"./build/dist/*.*\" ./sandbox/lib/",
"sandbox:build": "tsc --project ./sandbox",
"sandbox": "serve ./sandbox -l 3001 -n",
"legacy-visual": "npm run sandbox:copy && npm run sandbox:build",
"test": "karma start",
"test:ci": "karma start --browsers=ChromeHeadless_with_audio",
"test:watch": "karma start --auto-watch --single-run=false",
"coveralls": "echo 'Temporarily Remove Coveralls Due To Outage'",
"apidocs": "node scripts/apidocs.js",
"pretty": "prettier --write \"{src,sandbox/src,sandbox/tests}/**/*.{ts,js,json,css,md}\" --config prettier.config.js",
"release": "cross-env release=true npm run all"
},
"devDependencies": {
"@babel/core": "7.19.3",
"@fortawesome/fontawesome-free": "5.15.4",
"@octokit/rest": "18.12.0",
"@storybook/addon-actions": "6.5.12",
"@storybook/addon-essentials": "6.5.12",
"@storybook/addon-links": "6.5.12",
"@storybook/builder-webpack5": "6.5.12",
"@storybook/html": "6.5.12",
"@storybook/manager-webpack5": "6.5.12",
"@types/jasmine": "4.3.0",
"@types/node": "16.11.62",
"@types/react-color": "3.0.6",
"@types/webpack-env": "1.18.0",
"@typescript-eslint/eslint-plugin": "5.38.1",
"@typescript-eslint/parser": "5.38.1",
"babel-loader": "8.2.5",
"copy-webpack-plugin": "10.2.4",
"copyfiles": "2.4.1",
"coveralls": "3.1.1",
"cross-env": "7.0.3",
"css-loader": "6.7.1",
"eslint": "8.24.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-jsdoc": "39.3.6",
"excalibur-jasmine": "0.2.0",
"istanbul": "0.4.5",
"istanbul-instrumenter-loader": "3.0.1",
"jasmine": "4.4.0",
"jasmine-core": "4.4.0",
"karma": "6.4.1",
"karma-browserstack-launcher": "1.6.0",
"karma-chrome-launcher": "3.1.1",
"karma-coverage": "2.2.0",
"karma-coverage-istanbul-reporter": "3.0.3",
"karma-jasmine": "4.0.2",
"karma-summary-reporter": "3.1.1",
"karma-webpack": "5.0.0",
"puppeteer": "15.5.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"replace-in-file": "6.3.5",
"rimraf": "3.0.2",
"semver": "7.3.7",
"serve": "13.0.4",
"source-map-support": "0.5.21",
"sync-request": "6.1.0",
"terser-webpack-plugin": "5.3.6",
"ts-loader": "9.4.1",
"typedoc": "0.22.18",
"typescript": "4.7.4",
"url-loader": "4.1.1",
"wallaby-webpack": "3.9.16",
"webpack": "5.74.0",
"webpack-cli": "4.10.0"
},
"dependencies": {
"core-js": "3.25.3"
},
"overrides": {
"typedoc": {
"typescript": ">=4.7.4"
},
"istanbul-instrumenter-loader" : {
"webpack": ">=5.68.0"
}
}
}