-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.42 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.42 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
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
{
"name": "gametitle",
"namespace": "GameTitle",
"version": "0.0.0",
"description": "Web based game template for game jams.",
"homepage": "http://github.com/puzzud/gjweb",
"author": "Author Name <author@gametitle.com> (http://gametitle.com)",
"contributors": [
{
"name": "Andrew Dieffenbach",
"email": "puzzud@gmail.com",
"url": "http://www.puzzud.com",
"contribution": "Code"
},
{
"name": "Tom Hrabchak",
"url": "http://www.tomhrabchak.com",
"contribution": "Code"
},
{
"name": "Contributor Name3",
"email": "contributor3@gametitle.com",
"url": "http://github.com/puzzud/gjweb",
"contribution": "Art"
},
{
"name": "Contributor Name4",
"email": "contributor4@gametitle.com",
"url": "http://github.com/puzzud/gjweb",
"contribution": "Music"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/puzzud/gjweb.git"
},
"bugs": "https://github.com/puzzud/gjweb/issues",
"scripts": {
"postinstall": "grunt setuplibs",
"rename": "grunt rename",
"lint": "grunt lint",
"build": "grunt build",
"build_www": "grunt build_www",
"build_web": "grunt build_web",
"build_desktop": "grunt build_desktop",
"build_android": "grunt build_android",
"build_mobile": "grunt build_mobile",
"release": "grunt release",
"release_web": "grunt release_web",
"release_desktop": "grunt release_desktop",
"release_android": "grunt release_android",
"release_mobile": "grunt release_mobile"
},
"dependencies": {
"cca": "^0.7.4",
"cordova": "^5.3.3",
"csslint": "^0.10.0",
"grunt": "^0.4.5",
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-concat": "^0.4.0",
"grunt-contrib-copy": "^0.8.2",
"grunt-contrib-csslint": "^0.2.0",
"grunt-contrib-cssmin": "^0.10.0",
"grunt-contrib-htmlmin": "^0.3.0",
"grunt-contrib-jshint": "^0.9.2",
"grunt-contrib-uglify": "^0.4.1",
"grunt-cordovacli": "^0.8.2",
"grunt-html": "^1.4.0",
"grunt-nw-builder": "^2.0.0",
"grunt-processhtml": "^0.3.8",
"grunt-replace": "^0.11.0",
"phaser": "latest",
"three": "latest",
"time-grunt": "^1.2.2"
},
"main": "index.html",
"window": {
"title": "Game Title",
"icon": "assets/graphics/icons/general/icon196x196.png",
"show": false,
"toolbar": false,
"frame": true,
"fullscreen": false
}
}