is/package.json

61 lines
1.2 KiB
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": {
2017-11-06 16:26:59 +01:00
"lint": "tslint --project .",
"build": "tsc",
"test": "npm run lint && npm run build && ava dist/tests",
"prepublish": "npm run build && del dist/tests"
2017-09-22 00:54:26 +07:00
},
2017-11-06 16:26:59 +01:00
"main": "dist/index.js",
"types": "dist/index.d.ts",
2017-09-22 00:54:26 +07:00
"files": [
2017-11-06 16:26:59 +01:00
"dist"
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": {
2017-11-06 16:26:59 +01:00
"@types/jsdom": "^2.0.31",
"@types/node": "^8.0.47",
2017-09-22 00:54:26 +07:00
"ava": "*",
2017-11-06 16:26:59 +01:00
"del-cli": "^1.1.0",
2017-10-07 09:19:11 -07:00
"jsdom": "^9.12.0",
2017-11-06 16:26:59 +01:00
"tslint": "^5.8.0",
"tslint-xo": "^0.2.1",
"typescript": "^2.6.1"
2017-09-22 00:54:26 +07:00
}
2017-09-22 00:44:27 +07:00
}