forked from excaliburjs/Excalibur
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
125 lines (125 loc) · 4.72 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
{
"name": "excalibur",
"private": true,
"sideEffects": false,
"version": "0.24.4",
"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",
"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": {
"preinstall": "nvm use 12.18.2 || echo [WARNING] nvm not installed or node version not installed please check your version",
"all": "npm run lint && npm run core && npm run core:bundle-prod && npm run test && npm run legacy-visual",
"clean": "rimraf .tsbuildinfo ./build/dist ./build ./src/spec/*.js ./src/spec/*.map",
"travis": "npm run clean && git clone https://github.com/excaliburjs/excalibur-dist build && npm run all && npm run coveralls && npm run apidocs",
"appveyor": "npm run all && npm run nuget 0.0.1",
"nuget": ".\\src\\tools\\NuGet.exe pack Excalibur.nuspec -OutputDirectory .\\build\\dist -version",
"start": "npm run core:watch",
"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",
"core:copy": "copyfiles -u 2 ./src/engine/**/*.png ./src/engine/**/*.css ./src/engine/**/*.glsl ./build/dist/",
"core:bundle": "webpack --config webpack.config.js --devtool none",
"core:bundle-prod": "webpack --config webpack.config.prod.js",
"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:watch": "karma start --auto-watch --single-run=false",
"coveralls": "coveralls < coverage/lcov.info",
"apidocs": "git submodule update && node apidocs.js",
"pretty": "prettier --write \"{src,sandbox/src,sandbox/tests}/**/*.{ts,js,json,css,md}\" --config prettier.config.js",
"release": "node release.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js,json,md,css}": "prettier --write",
"*.ts": "eslint --fix"
},
"devDependencies": {
"@babel/core": "7.11.5",
"@fortawesome/fontawesome-free": "5.14.0",
"@storybook/addon-actions": "6.0.21",
"@storybook/addon-console": "1.2.1",
"@storybook/addon-docs": "6.0.21",
"@storybook/addon-knobs": "6.0.21",
"@storybook/addon-notes": "5.3.21",
"@storybook/html": "6.0.21",
"@types/jasmine": "3.5.14",
"@types/node": "14.6.2",
"@types/react-color": "3.0.4",
"@types/webpack-env": "1.15.2",
"@typescript-eslint/eslint-plugin": "2.34.0",
"@typescript-eslint/eslint-plugin-tslint": "2.34.0",
"@typescript-eslint/parser": "2.34.0",
"babel-loader": "8.1.0",
"copy-webpack-plugin": "6.1.0",
"copyfiles": "2.3.0",
"coveralls": "3.1.0",
"css-loader": "4.2.2",
"eslint": "7.8.1",
"eslint-plugin-jsdoc": "22.2.0",
"excalibur-jasmine": "0.0.1",
"grunt": "1.3.0",
"grunt-build-control": "0.7.1",
"grunt-bumpup": "0.6.3",
"grunt-cli": "1.3.2",
"husky": "4.2.5",
"istanbul": "0.4.5",
"istanbul-instrumenter-loader": "3.0.1",
"jasmine": "3.6.1",
"jasmine-core": "3.6.0",
"karma": "5.2.0",
"karma-chrome-launcher": "3.1.0",
"karma-coverage": "2.0.3",
"karma-coverage-istanbul-reporter": "3.0.3",
"karma-jasmine": "4.0.1",
"karma-webpack": "4.0.2",
"lint-staged": "10.2.13",
"prettier": "2.1.1",
"puppeteer": "5.2.1",
"rimraf": "3.0.2",
"semver": "7.3.2",
"serve": "11.3.2",
"source-map-support": "0.5.19",
"sync-request": "6.1.0",
"travis-ci": "2.2.0",
"ts-loader": "8.0.3",
"tslint": "6.1.3",
"typedoc": "0.19.0",
"typescript": "4.0.2",
"url-loader": "4.1.0",
"webpack": "4.44.1",
"webpack-cli": "3.3.12",
"webpack-merge": "4.2.2"
},
"dependencies": {
"core-js": "3.6.5"
}
}