is/package.json

50 lines
810 B
JSON
Raw Normal View History

2017-09-22 00:44:27 +07:00
{
2017-09-22 00:54:26 +07:00
"name": "@sindresorhus/is",
2017-09-29 10:22:56 +07:00
"version": "0.2.0",
2017-09-22 00:54:26 +07:00
"description": "Type check values: `is.string('🦄') //=> true`",
"license": "MIT",
"repository": "sindresorhus/is",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "sindresorhus.com"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=4"
},
"scripts": {
"test": "xo && ava"
},
"files": [
"index.js"
],
"keywords": [
"type",
"types",
"is",
"check",
"checking",
"validate",
"validation",
"utility",
"util",
"typeof",
"instanceof",
"object",
"assert",
"assertion",
"test",
"kind",
"primitive",
"verify",
"compare"
],
"devDependencies": {
"ava": "*",
"xo": "*"
}
2017-09-22 00:44:27 +07:00
}