-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.34 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.34 KB
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
{
"name": "@azerion/phaser-cachebuster",
"author": "Azerion",
"version": "3.0.0",
"description": "Simple Phaser plugin for adding a query parameter to assets URL's so that they can be 'cache busted'",
"contributors": [
{
"name": "Ale Bles",
"email": "a.bles@azerion.com"
}
],
"repository": {
"type": "git",
"url": "git@github.com:azerion/phaser-cachebuster.git"
},
"licenses": "MIT",
"bugs": "https://github.com/azerion/phaser-cachebuster/issues",
"scripts": {
"dev": "webpack-dev-server --config ./config/webpack.dev.config.js",
"dist": "webpack --config ./config/webpack.dist.config.js --progress --colors"
},
"config": {
"name": "phaser-cachebuster"
},
"main": "./build/phaser-cachebuster.min.js",
"types": "./build/ts/index.d.ts",
"devDependencies": {
"@types/es6-promise": "^3.3.0",
"@types/webfontloader": "^1.6.29",
"browser-sync": "^2.24.4",
"browser-sync-webpack-plugin": "^1.2.0",
"cache-loader": "^1.2.2",
"clean-webpack-plugin": "^0.1.19",
"file-loader": "^1.1.11",
"ts-loader": "^4.4.0",
"tslint": "^5.10.0",
"tslint-loader": "^3.6.0",
"typescript": "2.9.x",
"webpack": "^4.12.0",
"webpack-cli": "^3.0.3",
"webpack-dev-server": "^3.1.4"
},
"dependencies": {
"phaser": "^3.10.x",
"es6-promise-polyfill": "^1.2.0"
}
}