New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

credible

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

credible - npm Package Compare versions

Comparing version

to
0.2.0

credible.min.js

23

credible.js

@@ -0,1 +1,24 @@

/*!
* Copyright (c) 2015 Noah Portes Chaikin
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
(function(root){

@@ -2,0 +25,0 @@

5

package.json
{
"name": "credible",
"version": "0.1.5",
"version": "0.2.0",
"author": "Noah Portes Chaikin <noah.porteschaikin@carrotcreative.com>",

@@ -23,4 +23,5 @@ "description": "Unopinionated validation framework for node and the browser.",

"mocha": "1.x",
"should": "^4.6.1"
"should": "^4.6.1",
"uglify-js": "1.x"
}
}

22

README.md

@@ -24,3 +24,3 @@ credible

<script src="/bluebird.js"></script>
<script src="/credible.js"></script>
<script src="/credible.min.js"></script>
```

@@ -203,2 +203,10 @@

#### `boolean`
Property must be a boolean (`true` or `false` onlyq).
#### `date`
Property must be a date (`Date` object).
#### `email`

@@ -208,2 +216,6 @@

#### `exists`
Property must exist (not be `undefined`).
#### `fn`

@@ -239,2 +251,6 @@

#### `NaN`
Property must not be a number (`isNaN(value)` returns `false`).
#### `number`

@@ -266,2 +282,6 @@

#### `regexp`
Property must be a regular expression (`RegExp` object).
#### `string`

@@ -268,0 +288,0 @@