forked from victorjonsson/jQuery-Form-Validator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.66 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.66 KB
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
{
"name": "jquery-form-validator",
"description": "With this feature rich jQuery plugin it becomes easy to validate user input while keeping your HTML markup clean from javascript code. Even though this plugin has a wide range of validation functions it's designed to require as little bandwidth as possible. This is achieved by grouping together validation functions in \"modules\", making it possible for the programmer to load only those functions that's needed to validate a particular form.",
"version": "2.3.79",
"main": "./form-validator/jquery.form-validator.min.js",
"keywords": [
"form",
"validator",
"jquery"
],
"repository": {
"type": "git",
"url": "git+https://github.com/victorjonsson/jQuery-Form-Validator.git"
},
"bugs": {
"url": "https://github.com/victorjonsson/jQuery-Form-Validator/issues"
},
"author": {
"name": "Victor Jonsson",
"email": "kontakt@victorjonsson.se",
"url": "http://victorjonsson.se"
},
"homepage": "http://formvalidator.net/",
"license": "MIT",
"devDependencies": {
"grunt": "~0.4.5",
"grunt-cli": "~0.1.13",
"grunt-contrib-clean": "~1.0.0",
"grunt-contrib-concat": "^0.5.1",
"grunt-contrib-connect": "^0.11.2",
"grunt-contrib-copy": "~1.0.0",
"grunt-contrib-cssmin": "~0.14.0",
"grunt-contrib-jshint": "~1.0.0",
"grunt-contrib-qunit": "^0.7.0",
"grunt-contrib-uglify": "~0.11.1",
"grunt-contrib-watch": "^0.6.1",
"grunt-umd": "~2.4.0",
"numeral": "~1.5.3",
"qunitjs": "^1.20.0",
"jquery": "2.2.4"
},
"dependencies": {
"jquery": "2.2.4"
},
"scripts": {
"prepublish": "grunt prepublish",
"test": "grunt test"
}
}