{ "name": "is-alphanumerical", "version": "1.0.1", "description": "Check if a character is alphanumerical", "license": "MIT", "keywords": [ "string", "character", "char", "code", "alphabetical", "numerical", "alphanumerical" ], "repository": "wooorm/is-alphanumerical", "bugs": "https://github.com/wooorm/is-alphanumerical/issues", "author": "Titus Wormer (http://wooorm.com)", "contributors": [ "Titus Wormer (http://wooorm.com)" ], "files": [ "index.js" ], "dependencies": { "is-alphabetical": "^1.0.0", "is-decimal": "^1.0.0" }, "devDependencies": { "browserify": "^14.1.0", "esmangle": "^1.0.1", "nyc": "^11.0.0", "remark-cli": "^3.0.0", "remark-preset-wooorm": "^3.0.0", "tape": "^4.0.0", "xo": "^0.18.0" }, "scripts": { "build-md": "remark . -qfo", "build-bundle": "browserify index.js --bare -s isAlphanumerical > is-alphanumerical.js", "build-mangle": "esmangle < is-alphanumerical.js > is-alphanumerical.min.js", "build": "npm run build-md && npm run build-bundle && npm run build-mangle", "lint": "xo", "test-api": "node test", "test-coverage": "nyc --reporter lcov tape test.js", "test": "npm run build && npm run lint && npm run test-coverage" }, "xo": { "space": true, "esnext": false, "ignores": [ "is-alphanumerical.js" ] }, "nyc": { "check-coverage": true, "lines": 100, "functions": 100, "branches": 100 }, "remarkConfig": { "plugins": [ "preset-wooorm" ] } }