This repository has been archived by the owner on Feb 15, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.88 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
72
73
74
75
76
{
"name": "proto-watch",
"version": "1.1.0",
"description": "Scaffoling for a proto watch app",
"author": "LevelUp",
"repository": {
"type": "git",
"url": "https://github.com/twlevelup/watch_edition"
},
"scripts": {
"start": "grunt build && grunt connect:staging",
"test": "grunt test"
},
"dependencies": {
"backbone": "^1.1.2",
"envify": "^3.4.0",
"grunt": "^0.4.5",
"grunt-cli": "0.1.13",
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-connect": "^0.10.1",
"grunt-contrib-copy": "^0.8.0",
"grunt-contrib-jshint": "^0.11.1",
"grunt-contrib-watch": "^0.6.1",
"grunt-prompt": "^1.3.0",
"grunt-sass": "^0.18.1",
"handlebars": "^3.0.1",
"hbsfy": "^2.2.1",
"jquery": "^2.1.3",
"jshint-stylish": "^1.0.1",
"load-grunt-config": "^0.16.0",
"underscore": "^1.8.3",
"browserify-shim": "^3.8.6",
"browserify": "^10.1.0",
"grunt-browserify": "^3.7.0",
"grunt-concurrent": "^1.0.0",
"grunt-exec": "^0.4.6",
"grunt-karma": "^0.10.1"
},
"engines": {
"node": "0.10.x"
},
"devDependencies": {
"browserify-istanbul": "^0.2.1",
"grunt-sass": "^0.18.1",
"grunt-todos": "^0.3.0",
"jasmine-core": "^2.2.0",
"karma": "^0.12.31",
"karma-bro": "^0.11.1",
"karma-browserify": "^4.1.2",
"karma-coverage": "^0.3.1",
"karma-jasmine": "^0.3.5",
"karma-jasmine-jquery": "^0.1.1",
"karma-phantomjs-launcher": "^0.1.4",
"karma-spec-reporter": "0.0.19"
},
"browserify": {
"transform": [
"envify",
"browserify-shim"
]
},
"browser": {
"backbonefire": "./client/src/vendor/backbonefire-0.5.1.js",
"Firebase": "./client/src/vendor/firebase-2.2.4.js"
},
"browserify-shim": {
"backbonefire": {
"exports": "Backbone",
"depends": [
"Firebase",
"backbone:Backbone",
"jquery:$"
]
}
}
}