forked from geowarin/phaser-webpack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 880 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 880 Bytes
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
{
"name": "phaser-webpack",
"version": "2.0.0",
"description": "",
"main": "index.js",
"scripts": {
"clean": "rimraf dist",
"assets": "mkdirp dist && ncp assets dist/assets",
"build": "npm run assets && webpack -p",
"dev-serve": "lite-server --baseDir=dist"
},
"author": {
"name": "Geoffroy Warin"
},
"contributors": [
{
"name": "Cameron Seebach",
"email": "pannewb@gmail.com"
}
],
"license": "MIT",
"devDependencies": {
"css-loader": "0.28.0",
"extract-text-webpack-plugin": "2.1.0",
"html-webpack-plugin": "2.28.0",
"lite-server": "2.3.0",
"mkdirp": "0.5.0",
"ncp": "2.0.0",
"rimraf": "2.6.1",
"script-loader": "0.7.0",
"style-loader": "0.16.1",
"ts-loader": "2.0.3",
"typescript": "2.2.2",
"webpack": "2.4.1"
},
"dependencies": {
"phaser-ce": "2.7.6"
}
}