This repository has been archived by the owner on Jul 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
56 lines (56 loc) · 1.5 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
{
"name": "backbone-validator.js",
"title": "Backbone Validator",
"description": "Backbone model validator allows you to define validation rules for model and utilize it for model-standalone validation or bind its events to the view so you can display errors if needed.",
"version": "0.3.4",
"main": "backbone-validator.js",
"homepage": "http://fantactuka.github.io/backbone-validator/",
"author": {
"name": "fantactuka",
"url": "https://github.com/fantactuka"
},
"repository": {
"type": "git",
"url": "git://github.com/fantactuka/backbone-validator.git"
},
"keywords": [
"jquery",
"javascript",
"backbone",
"validation",
"validator"
],
"bugs": {
"url": "https://github.com/fantactuka/backbone-validator/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/fantactuka/backbone-validator/blob/master/LICENSE"
}
],
"scripts": {
"test": "grunt test"
},
"dependencies": {
"jquery": "*",
"backbone": "^1.1.2",
"underscore": "^1.6.0"
},
"devDependencies": {
"grunt": "1.0.1",
"grunt-contrib-jshint": "1.1.0",
"grunt-contrib-qunit": "1.3.0",
"grunt-contrib-uglify": "2.2.0",
"grunt-exec": "2.0.0",
"grunt-karma": "2.0.0",
"grunt-version": "1.1.1",
"jasmine-core": "2.5.2",
"karma": "1.5.0",
"karma-chrome-launcher": "2.0.0",
"karma-coverage": "1.1.1",
"karma-growl-reporter": "1.0.0",
"karma-jasmine": "1.1.0",
"karma-phantomjs-launcher": "1.0.4"
}
}