UNPKG

is-number-strict

Version:

Tiny lib to check if passed argument is strictly number. Strings will not pass!

61 lines (60 loc) 2.28 kB
{ "name": "is-number-strict", "version": "1.0.9", "description": "Tiny lib to check if passed argument is strictly number. Strings will not pass!", "main": "./dist/index.min.js", "types": "./dist/index.d.ts", "files": [ "dist/" ], "devDependencies": { "@types/jasmine": "^3.10.3", "commitizen": "^4.2.4", "conventional-changelog": "^3.1.25", "conventional-changelog-cli": "^2.2.2", "cz-conventional-changelog": "^2.1.0", "husky": "^1.3.1", "jasmine": "^3.99.0", "karma": "^6.3.16", "karma-chrome-launcher": "^3.1.0", "karma-jasmine": "^4.0.1", "karma-typescript": "^5.5.3", "prettier": "^1.19.1", "puppeteer": "^1.20.0", "tslint": "^5.20.1", "typedoc": "^0.23.21", "typescript": "^4.9.3", "uglifyjs": "^2.4.11" }, "scripts": { "test": "karma start", "lint": "tslint -c tslint.json 'src/**/*.ts' 'tests/**/*.spec.ts'", "prettier": "prettier --config .prettierrc.json --write src/**/*.ts", "commit": "git-cz", "doc": "typedoc src/index.ts --out dist/docs --readme ./README.md", "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s", "build": "tsc --p ./ --sourceMap false", "bundle": "uglifyjs ./dist/*.js --compress --mangle --output ./dist/index.min.js", "precommit": "npm run prettier && npm run lint", "prepush": "call npm run test", "preversion": "npm run test", "version": "call npm run clean && call npm run build && npm run bundle && call npm run doc && call npm run changelog && git add . && git commit -m 'changelogupdate' --no-verify", "postversion": "git add . && git push --no-verify && git push --tags --no-verify", "clean": "rmdir dist /S /Q", "start": "karma start --single-run false --auto-watch true" }, "keywords": [ "number", "typecheck", "typeof", "types", "NaN" ], "author": "Drag13", "license": "MIT", "config": { "commitizen": { "path": "./node_modules/cz-conventional-changelog" } } }