UNPKG

safe-code-point

Version:

Ascertains whether a Unicode code point is 'safe' for the purposes of encoding binary data

45 lines (44 loc) 1.25 kB
{ "name": "safe-code-point", "version": "3.0.3", "description": "Ascertains whether a Unicode code point is 'safe' for the purposes of encoding binary data", "homepage": "https://github.com/qntm/safe-code-point", "repository": { "type": "git", "url": "git://github.com/qntm/safe-code-point.git" }, "main": "lib/index.js", "type": "module", "keywords": [ "base64", "base65536", "base32768", "base2048", "base131072", "encoding", "unicode", "text", "decoding", "binary" ], "scripts": { "jasmine": "jasmine", "standard": "standard --fix", "tag": "node -e \"require('child_process').spawn('git', ['tag', `v${require('./package.json').version}`], { stdio: 'inherit' })\"", "tag-and-publish": "npm run tag && git push --tags && npm publish && npm version patch --no-git-tag-version && git add . && git commit -m \"Bump patch\" && git push", "test": "standard && jasmine \"**/*.spec.mjs\"" }, "author": "qntm", "dependencies": { "node-fetch": "^3.0.0" }, "devDependencies": { "jasmine": "^5.0.0", "standard": "^17.0.0" }, "files": [ "lib", "!lib/**/*.spec.mjs" ], "license": "MIT" }