is/package.json

76 lines
1.3 KiB
JSON
Raw Normal View History

2017-09-22 00:44:27 +07:00
{
2017-12-02 12:10:04 +01:00
"name": "@sindresorhus/is",
2019-02-04 02:55:36 +07:00
"version": "0.15.0",
2017-12-02 12:10:04 +01:00
"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",
2017-12-02 12:10:04 +01:00
"engines": {
"node": ">=6"
2017-12-02 12:10:04 +01:00
},
"scripts": {
"lint": "tslint --format stylish --project .",
2018-05-25 10:40:55 +07:00
"build": "del dist && tsc",
"test": "npm run lint && ava",
"prepublishOnly": "npm run build"
2017-12-02 12:10:04 +01:00
},
"files": [
"dist"
],
"keywords": [
"type",
"types",
"is",
"check",
"checking",
"validate",
"validation",
"utility",
"util",
"typeof",
"instanceof",
"object",
"assert",
"assertion",
"test",
"kind",
"primitive",
"verify",
"compare"
],
"devDependencies": {
2019-02-04 12:49:52 +07:00
"@sindresorhus/tsconfig": "^0.2.0",
"@types/jsdom": "^11.12.0",
"@types/node": "^10.12.21",
2018-11-30 14:28:54 +07:00
"@types/tempy": "^0.2.0",
2018-07-31 02:17:39 +07:00
"@types/zen-observable": "^0.8.0",
"ava": "^1.2.0",
2017-12-02 12:10:04 +01:00
"del-cli": "^1.1.0",
"jsdom": "^11.6.2",
"rxjs": "^6.4.0",
2017-12-02 12:10:04 +01:00
"tempy": "^0.2.1",
"ts-node": "^8.0.2",
"tslint": "^5.9.1",
2018-11-30 14:28:54 +07:00
"tslint-xo": "^0.10.0",
"typescript": "^3.3.1",
2018-05-03 05:22:32 +02:00
"zen-observable": "^0.8.8"
2017-12-02 12:10:04 +01:00
},
"types": "dist",
2019-02-04 12:49:52 +07:00
"sideEffects": false,
"ava": {
"babel": false,
"compileEnhancements": false,
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
}
2017-09-22 00:44:27 +07:00
}