diff options
author | RaindropsSys <contact@minteck.org> | 2023-04-06 22:18:28 +0200 |
---|---|---|
committer | RaindropsSys <contact@minteck.org> | 2023-04-06 22:18:28 +0200 |
commit | 83354b2b88218090988dd6e526b0a2505b57e0f1 (patch) | |
tree | e3c73c38a122a78bb7e66fbb99056407edd9d4b9 /includes/external/addressbook/node_modules/@sindresorhus/is/package.json | |
parent | 47b8f2299a483024c4a6a8876af825a010954caa (diff) | |
download | pluralconnect-83354b2b88218090988dd6e526b0a2505b57e0f1.tar.gz pluralconnect-83354b2b88218090988dd6e526b0a2505b57e0f1.tar.bz2 pluralconnect-83354b2b88218090988dd6e526b0a2505b57e0f1.zip |
Updated 5 files and added 1110 files (automated)
Diffstat (limited to 'includes/external/addressbook/node_modules/@sindresorhus/is/package.json')
-rw-r--r-- | includes/external/addressbook/node_modules/@sindresorhus/is/package.json | 82 |
1 files changed, 82 insertions, 0 deletions
diff --git a/includes/external/addressbook/node_modules/@sindresorhus/is/package.json b/includes/external/addressbook/node_modules/@sindresorhus/is/package.json new file mode 100644 index 0000000..3c029c5 --- /dev/null +++ b/includes/external/addressbook/node_modules/@sindresorhus/is/package.json @@ -0,0 +1,82 @@ +{ + "name": "@sindresorhus/is", + "version": "5.3.0", + "description": "Type check values", + "license": "MIT", + "repository": "sindresorhus/is", + "funding": "https://github.com/sindresorhus/is?sponsor=1", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "https://sindresorhus.com" + }, + "type": "module", + "exports": "./dist/index.js", + "types": "./dist/index.d.ts", + "engines": { + "node": ">=14.16" + }, + "scripts": { + "build": "del dist && tsc", + "test": "xo && ava", + "prepare": "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", + "typescript", + "typeguards", + "types" + ], + "devDependencies": { + "@sindresorhus/tsconfig": "^3.0.1", + "@types/jsdom": "^16.2.15", + "@types/node": "^18.0.6", + "@types/zen-observable": "^0.8.3", + "ava": "^4.3.1", + "del-cli": "^5.0.0", + "jsdom": "^20.0.0", + "rxjs": "^7.5.6", + "tempy": "^3.0.0", + "ts-node": "^10.9.1", + "typescript": "~4.7.4", + "xo": "^0.51.0", + "zen-observable": "^0.8.15" + }, + "sideEffects": false, + "ava": { + "extensions": { + "ts": "module" + }, + "nodeArguments": [ + "--loader=ts-node/esm" + ] + }, + "xo": { + "rules": { + "@typescript-eslint/no-empty-function": "off", + "@typescript-eslint/explicit-function-return-type": "off", + "@typescript-eslint/triple-slash-reference": "off" + } + } +} |