This repository has been archived by the owner on Jan 6, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.03 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "BackboneGithubSampleApplication",
"version": "1.1.0",
"description": "A sample Backbone application to display GitHub Repository of a given user.",
"main": "index.html",
"directories": {
"test": "tests"
},
"scripts": {
"start": "http-server -o -c-1 -s",
"test": "grunt test",
"test:browser": "http-server . -c-1 --cors -o -s -i false",
"integration": "grunt integration",
"build": "grunt build",
"build:jst": "grunt jst",
"bower": "bower",
"bower:install": "bower install",
"bower:update": "bower update --force-latest --save",
"watch": "grunt watch"
},
"repository": {
"type": "git",
"url": "https://github.com/samkelleher/BackboneGithubSampleApplication.git"
},
"keywords": [
"backbone",
"marionette",
"sample",
"github"
],
"author": "Sam Kelleher",
"license": "MIT",
"bugs": {
"url": "https://github.com/samkelleher/BackboneGithubSampleApplication/issues"
},
"engines": {
"node": ">=6",
"npm": ">=3"
},
"homepage": "https://github.com/samkelleher/BackboneGithubSampleApplication",
"devDependencies": {
"almond": "^0.3.2",
"bower": "^1.7.9",
"grunt": "^1.0.1",
"grunt-cli": "^1.2.0",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-cssmin": "^1.0.1",
"grunt-contrib-jasmine": "^1.0.3",
"grunt-contrib-jshint": "^1.0.0",
"grunt-contrib-jst": "^1.0.0",
"grunt-contrib-requirejs": "^1.0.0",
"grunt-contrib-uglify": "^1.0.1",
"grunt-contrib-watch": "^1.0.0",
"grunt-docco": "^0.4.0",
"grunt-karma": "^2.0.0",
"grunt-karma-coveralls": "^2.5.4",
"grunt-processhtml": "^0.4.0",
"grunt-template-jasmine-requirejs": "^0.2.3",
"http-server": "^0.9.0",
"jasmine-core": "^2.4.1",
"karma": "^0.13.22",
"karma-coverage": "^1.0.0",
"karma-jasmine": "^1.0.2",
"karma-phantomjs-launcher": "^1.0.0",
"karma-requirejs": "^1.0.0",
"phantomjs-prebuilt": "^2.1.7",
"requirejs": "^2.2.0"
}
}