forked from jquery-validation/jquery-validation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.43 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
{
"name": "jquery-validation",
"title": "jQuery Validation Plugin",
"description": "Client-side form validation made easy",
"version": "1.19.6-pre",
"homepage": "https://jqueryvalidation.org/",
"license": "MIT",
"author": {
"name": "Jörn Zaefferer",
"email": "[email protected]",
"url": "http://bassistance.de"
},
"repository": {
"type": "git",
"url": "git://github.com/jquery-validation/jquery-validation.git"
},
"bugs": {
"url": "https://github.com/jquery-validation/jquery-validation/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://www.opensource.org/licenses/MIT"
}
],
"scripts": {
"test": "grunt",
"prepublish": "grunt"
},
"files": [
"dist/localization/",
"dist/additional-methods.js",
"dist/additional-methods.min.js",
"dist/jquery.validate.js",
"dist/jquery.validate.min.js"
],
"main": "dist/jquery.validate.js",
"peerDependencies": {
"jquery": "^1.7 || ^2.0 || ^3.1"
},
"devDependencies": {
"commitplease": "2.3.1",
"grunt": "1.0.1",
"grunt-contrib-compress": "1.2.0",
"grunt-contrib-concat": "1.0.1",
"grunt-contrib-copy": "1.0.0",
"grunt-contrib-jshint": "1.0.0",
"grunt-contrib-qunit": "1.2.0",
"grunt-contrib-uglify": "1.0.1",
"grunt-contrib-watch": "1.0.0",
"grunt-jscs": "2.8.0",
"grunt-sri": "0.2.0",
"grunt-text-replace": "0.4.0",
"qunitjs": "2.3.3"
},
"keywords": [
"jquery",
"jquery-plugin",
"forms",
"validation",
"validate"
]
}