This repository has been archived by the owner on Jul 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
91 lines (91 loc) · 2.57 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "orchestra",
"description": "Simplify Backbone.Marionette applcations with an opinionated set of dependencies",
"version": "3.1.3",
"authors": [
"Andrew Humphreys <[email protected]>",
"Joe Fitter <[email protected]>",
"Jonathan Holmlund <[email protected]>",
"Sven Lito <[email protected]>"
],
"contributors": [
"Viktor Movcan <[email protected]>",
"Luke Jackson <[email protected]>",
"Connor Smallman <[email protected]>"
],
"repository": "https://github.com/BedeGaming/orchestra",
"engines": {
"node": ">= 0.8.x"
},
"main": "lib/index.js",
"dependencies": {
"backbone": "^1.3.3",
"backbone-routing": "^0.2.0",
"backbone-validation": "git://github.com/ahumphreys87/backbone.validation.git#custom-lodash",
"backbone.cocktail": "0.5.10",
"backbone.marionette": "3.3.1",
"backbone.service": "git://github.com/ahumphreys87/backbone.service.git#radio-2",
"backbone.stickit": "^0.9.0",
"backbone.storage": "0.2.1",
"backbone.syphon": "git://github.com/ahumphreys87/backbone.syphon.git#peer-deps",
"browserify-swap": "^0.2.2",
"handlebars": "^4.1.2",
"i18next": "^3.4.4",
"i18next-sprintf-postprocessor": "0.0.6",
"jquery": "3.4.1",
"lodash": "^4.0.0",
"moment": "^2.8.3",
"numbro": "^1.9.3",
"redux": "^3.7.1"
},
"devDependencies": {
"babel-plugin-add-module-exports": "^0.1.1",
"babel-preset-es2015": "^6.3.13",
"babelify": "^7.2.0",
"browserify": "^12.0.1",
"connect": "2.4.3",
"expect.js": "^0.3.1",
"gulp": "^3.8.7",
"gulp-babel": "^6.1.1",
"gulp-coveralls": "^0.1.4",
"gulp-istanbul": "^0.10.3",
"gulp-jscs": "^3.0.2",
"gulp-jshint": "^2.0.0",
"gulp-mocha": "^2.0.0",
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^1.5.2",
"gulp-uglify": "^1.2.0",
"gulp-util": "^3.0.6",
"isparta": "^4.0.0",
"jsdom": "^7.2.0",
"jshint": "^2.8.0",
"localStorage": "^1.0.2",
"mockery": "^1.4.0",
"require-dir": "^0.3.0",
"require-new": "^1.1.0",
"sinon": "^1.17.2",
"through2": "^2.0.0",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0"
},
"scripts": {
"test": "NODE_ENV=build gulp test",
"coverage": "NODE_ENV=build gulp coveralls",
"build": "BROWSERIFYSWAP_ENV='all' gulp build"
},
"browserify": {
"transform": [
"babelify",
"browserify-swap"
]
},
"browserify-swap": {
"@packages": [
"underscore"
],
"all": {
"underscore.js$": "lodash"
}
},
"browser": "src/index.js"
}