mirror of https://github.com/lukechilds/ow.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
716 B
50 lines
716 B
7 years ago
|
{
|
||
|
"name": "ow",
|
||
|
"version": "0.0.1",
|
||
|
"description": "Argument type validation",
|
||
|
"license": "MIT",
|
||
|
"repository": "sindresorhus/ow",
|
||
|
"author": {
|
||
|
"name": "Sindre Sorhus",
|
||
|
"email": "sindresorhus@gmail.com",
|
||
|
"url": "sindresorhus.com"
|
||
|
},
|
||
|
"engines": {
|
||
|
"node": ">=4"
|
||
|
},
|
||
|
"scripts": {
|
||
|
"test": "xo && ava"
|
||
|
},
|
||
|
"files": [
|
||
|
"index.js",
|
||
|
"example.js"
|
||
|
],
|
||
|
"keywords": [
|
||
|
"type",
|
||
|
"types",
|
||
|
"check",
|
||
|
"checking",
|
||
|
"guard",
|
||
|
"guards",
|
||
|
"assert",
|
||
|
"assertion",
|
||
|
"predicate",
|
||
|
"predicates",
|
||
|
"is",
|
||
|
"validate",
|
||
|
"validation",
|
||
|
"utility",
|
||
|
"util",
|
||
|
"typeof",
|
||
|
"instanceof",
|
||
|
"object"
|
||
|
],
|
||
|
"dependencies": {
|
||
|
"@sindresorhus/is": "^0.2.0"
|
||
|
},
|
||
|
"devDependencies": {
|
||
|
"ava": "*",
|
||
|
"xo": "*"
|
||
|
}
|
||
|
}
|