forked from BoilerplateMVC/Backbone-Require-Boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.32 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": "Backbone-Require-Boilerplate",
"title": "Backbone and Require Boilerplate",
"description": "A Backbone.js and Require.js Boilerplate that promotes decoupling your JavaScript into modules, separating business logic from application logic using Models and Views, reusing your JavaScript between Desktop and Mobile Web versions, including non-AMD Compatible Third Party Scripts in your project, and optimizing all of your JavaScript (minify, concatenate, etc).",
"version": "1.2.0",
"homepage": "https://github.com/gfranko/Backbone-Require-Boilerplate",
"author": {
"name": "Greg Franko",
"email": "[email protected]",
"url": "http://www.gregfranko.com"
},
"repository": {
"type": "git",
"url": "[email protected]:gfranko/Backbone-Require-Boilerplate.git"
},
"bugs": {
"url": "https://github.com/gfranko/Backbone-Require-Boilerplate/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/gfranko/Backbone-Require-Boilerplate/blob/master/LICENSE-MIT"
}
],
"main": "./server/server",
"keywords": [
"Backbone.js",
"Require.js",
"Backbone and Require Boilerplate"
],
"devDependencies": {
"express": "3.x",
"grunt": "~0.4.1",
"grunt-contrib-requirejs": "~0.4.0",
"grunt-contrib-jshint": "~0.3.0",
"uglify-js": "~2.2.5"
}
}