-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.05 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
{
"name": "LudumDare37",
"version": "1.0.0",
"description": "A bit of practice with Phaser, ES2015 and Webpack",
"scripts": {
"start": "npm install; npm run dev",
"dev": "webpack-dev-server --content-base build/ --inline",
"build": "webpack",
"lint": "eslint ./src/scripts/*",
"clean": "rm -rf ./build",
"destroy": "npm run clean; rm -rf ./node_modules",
"publish": "npm run build; rm -rf ./docs; cp -R ./build ./docs"
},
"repository": {
"type": "git",
"url": "https://github.com/ninjascribble/LudumDare34-Practice"
},
"author": "@ninjascript",
"license": "MIT",
"devDependencies": {
"babel-core": "6.13.2",
"babel-loader": "6.2.4",
"babel-preset-es2015": "6.13.2",
"chai": "3.5.0",
"clean-webpack-plugin": "0.1.10",
"copy-webpack-plugin": "0.3.3",
"eslint": "2.11.0",
"eslint-config-idiomatic": "2.1.0",
"mocha": "3.1.0",
"sinon": "1.17.6",
"sinon-chai": "2.8.0",
"webpack": "1.13.1",
"webpack-dev-server": "1.14.1"
},
"dependencies": {
"phaser": "2.6.1"
}
}