forked from orbit-oss/is
75 lines
1.3 KiB
JSON
75 lines
1.3 KiB
JSON
{
|
|
"name": "@sindresorhus/is",
|
|
"version": "0.15.0",
|
|
"description": "Type check values: `is.string('🦄') //=> true`",
|
|
"license": "MIT",
|
|
"repository": "sindresorhus/is",
|
|
"author": {
|
|
"name": "Sindre Sorhus",
|
|
"email": "sindresorhus@gmail.com",
|
|
"url": "sindresorhus.com"
|
|
},
|
|
"main": "dist",
|
|
"engines": {
|
|
"node": ">=6"
|
|
},
|
|
"scripts": {
|
|
"lint": "tslint --format stylish --project .",
|
|
"build": "del dist && tsc",
|
|
"test": "npm run lint && ava",
|
|
"prepublishOnly": "npm run build"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"keywords": [
|
|
"type",
|
|
"types",
|
|
"is",
|
|
"check",
|
|
"checking",
|
|
"validate",
|
|
"validation",
|
|
"utility",
|
|
"util",
|
|
"typeof",
|
|
"instanceof",
|
|
"object",
|
|
"assert",
|
|
"assertion",
|
|
"test",
|
|
"kind",
|
|
"primitive",
|
|
"verify",
|
|
"compare"
|
|
],
|
|
"devDependencies": {
|
|
"@sindresorhus/tsconfig": "^0.2.0",
|
|
"@types/jsdom": "^11.12.0",
|
|
"@types/node": "^10.12.21",
|
|
"@types/tempy": "^0.2.0",
|
|
"@types/zen-observable": "^0.8.0",
|
|
"ava": "^1.2.0",
|
|
"del-cli": "^1.1.0",
|
|
"jsdom": "^11.6.2",
|
|
"rxjs": "^6.4.0",
|
|
"tempy": "^0.2.1",
|
|
"ts-node": "^8.0.2",
|
|
"tslint": "^5.9.1",
|
|
"tslint-xo": "^0.10.0",
|
|
"typescript": "^3.3.1",
|
|
"zen-observable": "^0.8.8"
|
|
},
|
|
"types": "dist",
|
|
"sideEffects": false,
|
|
"ava": {
|
|
"babel": false,
|
|
"compileEnhancements": false,
|
|
"extensions": [
|
|
"ts"
|
|
],
|
|
"require": [
|
|
"ts-node/register"
|
|
]
|
|
}
|
|
}
|