-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
29 lines (29 loc) · 1.39 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
{
"name": "Backbone.validateAll.js",
"title": "Backbone.js plugin that provides an option to only validate Model properties that are currently being set or saved",
"description": "This plugin originated out of frustration with using the Backbone.js Model `validate` method when validating HTML forms. Since Backbone.js v0.9.1 and greater, Backbone Model validation was not made to elegantly handle form validation, since the default `validate` method will validate all Model attributes, regardless of what particular attribute is being **set** or **saved**. For certain use cases, it is necessary to only validate a certain Model property (or form field) without worrying about the validation of any other Model property (or form field).",
"version": "0.2.0",
"homepage": "https://github.com/gfranko/Backbone.validateAll",
"author": {
"name": "Greg Franko",
"email": "gfranko5@yahoo.com",
"url": "http://www.gregfranko.com"
},
"repository": {
"type": "git",
"url": "git://github.com/gfranko/Backbone.ValidateAll.js.git"
},
"bugs": {
"url": "https://github.com/gfranko/Backbone.ValidateAll.js/issues"
},
"licenses": [
{
"type": "MIT",
"url": "http://www.gregfranko.com/Backbone.validateAll.js/blob/master/LICENSE-MIT"
}
],
"dependencies": {
"grunt": "0.3.17"
},
"keywords": ["Backbone.js", "Backbone Model Validate", "Backbone validateAll"]
}