This repository has been archived by the owner on Apr 16, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 129
/
package.json
49 lines (49 loc) · 1.68 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
39
40
41
42
43
44
45
46
47
48
49
{
"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.8.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": "~3.9.1",
"grunt-template-jasmine-istanbul": "~0.2.4",
"grunt-template-jasmine-requirejs": "~0.1.3",
"grunt-contrib-connect": "~0.3.0",
"grunt-cucumber": "~0.2.1",
"chai": "~1.7.2",
"grunt-plato": "~0.2.1",
"grunt-karma": "~0.6.1",
"karma-coverage": "~0.1.0",
"webdriverjs": "~0.7.9",
"amdclean": "2.x",
"grunt-contrib-uglify": "~0.3.2"
}
}