-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
101 lines (101 loc) · 2.42 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
92
93
94
95
96
97
98
99
100
101
{
"name": "marionette.state",
"description": "One-way state architecture for a Marionette.js app.",
"version": "1.0.1",
"homepage": "https://github.com/Squareknot/marionette.state",
"main": "build/marionette.state.js",
"keywords": [
"backbone",
"marionette",
"view",
"application",
"component",
"state",
"model",
"controller",
"manager",
"architecture",
"one",
"way",
"data",
"binding"
],
"license": "MIT",
"scripts": {
"test": "node_modules/.bin/gulp test",
"test-browser": "node_modules/.bin/gulp test-browser",
"build": "node_modules/.bin/gulp build",
"coverage": "node_modules/.bin/gulp coverage"
},
"author": {
"name": "ianmstew",
"email": "[email protected]",
"web": "https://ianmstew.com"
},
"contributors": [{
"name": "Ryan Yurkanin",
"email":" [email protected]"
}],
"bugs": {
"url": "https://github.com/Squareknot/marionette.state/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Squareknot/marionette.state.git"
},
"github": "https://github.com/Squareknot/marionette.state.git",
"dependencies": {
"backbone": "1.0.0 - 1.2.3",
"backbone.marionette": "^2.1.0",
"underscore": "1.4.4 - 1.8.3"
},
"devDependencies": {
"babel": "^5.0.0",
"babel-core": "^5.2.17",
"babel-eslint": "^3.1.9",
"babelify": "^6.0.0",
"browserify": "^8.1.1",
"chai": "^2.0.0",
"del": "^1.1.1",
"esperanto": "^0.6.7",
"glob": "^4.3.5",
"gulp": "^3.8.10",
"gulp-babel": "^5.0.0",
"gulp-eslint": "^0.12.0",
"gulp-file": "^0.2.0",
"gulp-filter": "^2.0.0",
"gulp-header": "^1.7.1",
"gulp-istanbul": "^0.6.0",
"gulp-jscs": "^1.4.0",
"gulp-livereload": "^3.4.0",
"gulp-load-plugins": "^0.8.0",
"gulp-mocha": "^2.0.0",
"gulp-notify": "^2.1.0",
"gulp-plumber": "^0.6.6",
"gulp-rename": "^1.2.0",
"gulp-sourcemaps": "^1.3.0",
"gulp-uglify": "^1.2.0",
"isparta": "^2.2.0",
"jquery": "1.11.2",
"jsdom": "3.1.2",
"mkdirp": "^0.5.0",
"mocha": "^2.1.0",
"run-sequence": "^1.0.2",
"sinon": "~1.14.1",
"sinon-chai": "^2.7.0",
"vinyl-source-stream": "^1.0.0"
},
"babelBoilerplateOptions": {
"entryFileName": "index",
"exportVarName": "Marionette.State",
"mochaGlobals": [
"stub",
"spy",
"expect",
"_",
"$",
"Bb",
"Mn"
]
}
}