Blame view

frontend/web/js/validation/package.json 1.26 KB
18b850c7   Administrator   Importers CRUD
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
  {
  	"name": "jquery-validation",
  	"title": "jQuery Validation Plugin",
  	"description": "Client-side form validation made easy",
  	"version": "1.14.0",
  	"homepage": "http://jqueryvalidation.org/",
  	"license": "MIT",
  	"author": {
  		"name": "Jörn Zaefferer",
  		"email": "joern.zaefferer@gmail.com",
  		"url": "http://bassistance.de"
  	},
  	"repository": {
  		"type": "git",
  		"url": "git://github.com/jzaefferer/jquery-validation.git"
  	},
  	"bugs": {
  		"url": "https://github.com/jzaefferer/jquery-validation/issues"
  	},
  	"licenses": [
  		{
  			"type": "MIT",
  			"url": "http://www.opensource.org/licenses/MIT"
  		}
  	],
  	"scripts": {
  		"test": "grunt",
  		"prepublish": "grunt"
  	},
  	"files": [
  		"dist/localization/",
  		"dist/additional-methods.js",
  		"dist/jquery.validate.js"
  	],
  	"main": "dist/jquery.validate.js",
  	"dependencies": {},
  	"devDependencies": {
  		"commitplease": "2.0.0",
  		"grunt": "0.4.4",
  		"grunt-contrib-compress": "0.7.0",
  		"grunt-contrib-concat": "0.3.0",
  		"grunt-contrib-copy": "0.5.0",
  		"grunt-contrib-jshint": "^0.10.0",
  		"grunt-contrib-qunit": "0.4.0",
  		"grunt-contrib-uglify": "0.4.0",
  		"grunt-contrib-watch": "0.6.0",
  		"grunt-jscs": "1.0.0",
  		"grunt-text-replace": "0.3.11"
  	},
  	"keywords": [
  		"jquery",
  		"jquery-plugin",
  		"forms",
  		"validation",
  		"validate"
  	]
  }