is/package.json

55 lines
941 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-10-22 02:28:27 +07:00
"version": "0.4.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": "tsc && ava",
"build": "tsc",
"prepublish": "tsc"
2017-09-22 00:54:26 +07:00
},
"files": [
"index.js",
"index.d.ts"
2017-09-22 00:54:26 +07:00
],
"keywords": [
"type",
"types",
"is",
"check",
"checking",
"validate",
"validation",
"utility",
"util",
"typeof",
"instanceof",
"object",
"assert",
"assertion",
"test",
"kind",
"primitive",
"verify",
"compare"
],
"devDependencies": {
"@types/node": "^8.0.47",
2017-09-22 00:54:26 +07:00
"ava": "*",
2017-10-07 09:19:11 -07:00
"jsdom": "^9.12.0",
"typescript": "^2.6.1"
2017-09-22 00:54:26 +07:00
}
2017-09-22 00:44:27 +07:00
}