forked from ansman/validate.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.01 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
{
"name": "validate.js",
"version": "0.12.0",
"author": "Nicklas Ansman <[email protected]>",
"description": "Declarative validations for JavaScript",
"main": "validate.js",
"typings": "validate.d.ts",
"homepage": "http://validatejs.org",
"repository": {
"type": "git",
"url": "https://github.com/ansman/validate.js.git"
},
"files": [
"typings.json",
"validate.d.ts",
"validate.js",
"validate.min.js",
"validate.min.map"
],
"scripts": {
"test": "grunt test",
"build": "grunt build",
"watch": "grunt watch",
"docs": "grunt docco"
},
"keywords": [
"validation",
"validate",
"server",
"client"
],
"devDependencies": {
"grunt": "1.0.1",
"grunt-notify": "0.4.5",
"grunt-contrib-watch": "1.0.0",
"grunt-contrib-jshint": "1.0.0",
"grunt-contrib-uglify": "1.0.1",
"grunt-contrib-jasmine": "1.0.3",
"grunt-docco": "0.4.0",
"grunt-template-jasmine-istanbul": "0.4.0",
"coveralls": "2.11.9"
},
"license": "MIT"
}