-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1010 Bytes
/
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
{
"name": "template-phaser-blank",
"version": "0.1.0",
"description": "A blank phaser template for making html5 games",
"scripts": {
"build": "grunt build",
"eslint-pre-commit": "./scripts/eslint-pre-commit",
"test": "grunt test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Brinkbit/template-phaser.git"
},
"keywords": [
"phaser",
"html5",
"game",
"canvas"
],
"author": "Brinkbit",
"license": "MIT",
"bugs": {
"url": "https://github.com/Brinkbit/template-phaser-blank/issues"
},
"homepage": "https://github.com/Brinkbit/template-phaser-blank#readme",
"pre-commit": [
"eslint-pre-commit"
],
"devDependencies": {
"babel-eslint": "^4.1.6",
"eslint-config-airbnb-es5": "^1.0.8",
"eslint-plugin-react": "^3.10.0",
"grunt": "^0.4.5",
"grunt-contrib-clean": "^0.7.0",
"grunt-contrib-copy": "^0.8.2",
"grunt-eslint": "^17.3.1",
"load-grunt-tasks": "^3.3.0",
"phaser": "^2.4.4"
}
}