-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.75 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.75 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
50
51
52
53
54
{
"name" : "node-ratify",
"version" : "1.1.32",
"description" : "A rich and efficient node validation library for String, Number, Date and Javascript Objects",
"main" : "./validate.js",
"keywords" : [
"validator",
"validation",
"validate",
"assert",
"node-validate",
"node-validation",
"ratify",
"node-valid",
"valid",
"node-ratify",
"validationUtils",
"string validation",
"date validation",
"array validation",
"object validation"
],
"files" : [
"validate.js",
"validate.min.js",
"README.md",
"package.json",
"LICENSE"
],
"devDependencies" : {
"chai" : "^3.5.0",
"coveralls" : "^2.13.1",
"istanbul" : "^0.4.5",
"mocha" : "^3.4.1",
"uglify-js" : "^3.0.10"
},
"repository" : {
"type" : "git",
"url" : "https://github.com/luthraG/node-validate.git"
},
"bugs" : {
"url" : "https://github.com/luthraG/node-validate/issues"
},
"author" : {
"name" : "Gaurav Luthra",
"email" : "luthra.zenith@gmail.com"
},
"scripts" : {
"minify" : "uglifyjs validate.js -o validate.min.js --compress --mangle --comments '/Copyright/'",
"test" : "./node_modules/mocha/bin/mocha --reporter spec",
"coveralls" : "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"license" : "MIT"
}