is/package.json

97 lines
1.8 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",
2020-02-17 14:18:18 +07:00
"version": "2.1.0",
2019-02-12 14:40:44 +07:00
"description": "Type check values",
2017-12-02 12:10:04 +01:00
"license": "MIT",
"repository": "sindresorhus/is",
2020-01-22 18:47:01 +07:00
"funding": "https://github.com/sindresorhus/is?sponsor=1",
2017-12-02 12:10:04 +01:00
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
2020-02-22 02:01:58 +07:00
"url": "https://sindresorhus.com"
2017-12-02 12:10:04 +01:00
},
"main": "dist",
2017-12-02 12:10:04 +01:00
"engines": {
2019-11-07 15:56:02 +07:00
"node": ">=10"
2017-12-02 12:10:04 +01:00
},
"scripts": {
2018-05-25 10:40:55 +07:00
"build": "del dist && tsc",
2019-03-31 20:41:19 +07:00
"test": "xo && 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",
2019-02-12 14:40:44 +07:00
"compare",
"typescript",
"typeguards",
"types"
2017-12-02 12:10:04 +01:00
],
"devDependencies": {
2020-01-21 17:56:44 +01:00
"@sindresorhus/tsconfig": "^0.7.0",
2020-02-22 02:01:58 +07:00
"@types/jsdom": "^16.1.0",
"@types/node": "^13.7.4",
2018-07-31 02:17:39 +07:00
"@types/zen-observable": "^0.8.0",
2020-02-22 02:01:58 +07:00
"@typescript-eslint/eslint-plugin": "^2.20.0",
"@typescript-eslint/parser": "^2.20.0",
"ava": "^3.3.0",
2019-06-15 02:12:31 +07:00
"del-cli": "^2.0.0",
2020-02-22 02:01:58 +07:00
"eslint-config-xo-typescript": "^0.26.0",
2020-01-30 00:38:17 +07:00
"jsdom": "^16.0.1",
"rxjs": "^6.4.0",
2020-02-22 02:01:58 +07:00
"tempy": "^0.4.0",
2019-06-30 15:15:27 +07:00
"ts-node": "^8.3.0",
2020-02-22 02:01:58 +07:00
"typescript": "~3.8.2",
"xo": "^0.26.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": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
2019-03-31 20:41:19 +07:00
},
"xo": {
"extends": "xo-typescript",
"extensions": [
"ts"
],
2020-01-21 17:56:44 +01:00
"parserOptions": {
"project": "./tsconfig.xo.json"
},
2019-05-04 12:05:23 +03:00
"globals": [
"BigInt",
"BigInt64Array",
"BigUint64Array"
],
2019-03-31 20:41:19 +07:00
"rules": {
2019-06-30 15:15:27 +07:00
"@typescript-eslint/promise-function-async": "off",
"@typescript-eslint/no-empty-function": "off",
2019-03-31 20:41:19 +07:00
"@typescript-eslint/explicit-function-return-type": "off"
}
}
2017-09-22 00:44:27 +07:00
}