is-any-type
Version:
is-any-type simple functionality alternative to check data type references such as typeof and instanceof
91 lines (90 loc) • 2.26 kB
JSON
{
"name": "is-any-type",
"version": "0.0.4",
"description": "is-any-type simple functionality alternative to check data type references such as typeof and instanceof",
"main": "./dist/index.js",
"module": "./esm/index.js",
"files": [
"/dist/**",
"/esm/**"
],
"scripts": {
"clean:cjs": "rimraf dist",
"compiler:cjs": "npm run clean:cjs && tsc --pretty",
"clean:esm": "rimraf esm",
"compiler:esm": "npm run clean:esm && tsc --outDir esm --module es6 --pretty",
"build": "npm run compiler:cjs && npm run compiler:esm",
"start": "ts-node index.ts",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watchAll",
"test:coveralls": "jest --coverage && coveralls < coverage/lcov.info",
"lint": "eslint src/**/*.ts --fix",
"format": "prettier src/**/*.ts --write",
"lint:fix": "npm run format && npm run lint"
},
"author": "Restu Wahyu Saputra <restuwahyu13@gmail.com>",
"repository": {
"url": "git+https://github.com/restuwahyu13/is-any-type.git"
},
"homepage": "https://github.com/restuwahyu13/is-any-type#readme",
"bugs": {
"url": "https://github.com/restuwahyu13/is-any-type/issues"
},
"license": "MIT",
"engines": {
"node": ">=10",
"npm": ">=5"
},
"keywords": [
"assert",
"expect",
"tdd",
"bdd",
"testing",
"assertion",
"test",
"compare",
"browser",
"node",
"typeof",
"is-any-type",
"instanceof",
"check",
"checking",
"type check",
"validate",
"validation",
"utility",
"javascript",
"typescript"
],
"devDependencies": {
"@types/eslint": "^7.2.6",
"@types/jest": "^26.0.20",
"@types/node": "^15.0.1",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"coveralls": "^3.1.0",
"eslint": "^7.17.0",
"eslint-config-prettier": "^8.0.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.2.1",
"husky": "^4.3.7",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint:fix"
}
}
}