is/package.json

64 lines
1.2 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",
2018-12-13 16:58:24 +01:00
"version": "0.14.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/index.js",
"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",
2017-12-02 12:10:04 +01:00
"test": "npm run lint && npm run build && ava dist/tests",
"prepublish": "npm run build && del dist/tests"
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": {
2018-11-30 14:28:54 +07:00
"@sindresorhus/tsconfig": "^0.1.0",
"@types/jsdom": "^11.12.0",
2018-11-30 14:28:54 +07:00
"@types/node": "^10.12.10",
"@types/tempy": "^0.2.0",
2018-07-31 02:17:39 +07:00
"@types/zen-observable": "^0.8.0",
2018-12-13 00:58:02 +01:00
"ava": "^0.25.0",
2017-12-02 12:10:04 +01:00
"del-cli": "^1.1.0",
"jsdom": "^11.6.2",
"rxjs": "^6.3.3",
2017-12-02 12:10:04 +01:00
"tempy": "^0.2.1",
"tslint": "^5.9.1",
2018-11-30 14:28:54 +07:00
"tslint-xo": "^0.10.0",
"typescript": "^3.2.1",
2018-05-03 05:22:32 +02:00
"zen-observable": "^0.8.8"
2017-12-02 12:10:04 +01:00
},
"types": "dist/index.d.ts"
2017-09-22 00:44:27 +07:00
}