-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.16 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
{
"name": "form-validation",
"title": "Form validation",
"description": "Validation UI for web forms using the HTML5 constraint validation API",
"version": "1.1.1",
"homepage": "https://github.com/bboyle/form-validation",
"author": {
"name": "Ben Boyle",
"email": "[email protected]",
"url": "http://ultimate.benboyle.id.au/"
},
"repository": {
"type": "git",
"url": "git://github.com/bboyle/form-validation.git"
},
"bugs": "https://github.com/bboyle/form-validation/issues",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/bboyle/form-validation/blob/master/LICENSE-MIT"
}
],
"keywords": [
"HTML5",
"form validation",
"UX",
"constraint validation API"
],
"directories": {
"test": "test"
},
"devDependencies": {
"grunt-contrib-clean": "~0.5.0",
"grunt-contrib-watch": "~0.6.1",
"grunt-contrib-uglify": "~0.4.0",
"grunt": "~0.4.4",
"grunt-contrib-jshint": "~0.10.0",
"grunt-contrib-qunit": "~0.4.0",
"qunitjs": "~1.14.0",
"grunt-contrib-connect": "~0.7.1",
"grunt-contrib-concat": "~0.4.0"
},
"scripts": {
"test": "grunt test"
}
}