base2048
Version:
Binary encoding optimised for Twitter
39 lines (38 loc) • 1.09 kB
JSON
{
"name": "base2048",
"version": "3.0.0",
"description": "Binary encoding optimised for Twitter",
"homepage": "https://github.com/qntm/base2048",
"repository": {
"type": "git",
"url": "git://github.com/qntm/base2048.git"
},
"type": "module",
"main": "src/index.js",
"types": "typings/index.d.ts",
"scripts": {
"mocha": "c8 --100 mocha",
"standard": "standard",
"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": "npm run standard && npm run mocha"
},
"keywords": [
"encoding",
"binary",
"twitter",
"unicode"
],
"author": "qntm",
"license": "MIT",
"devDependencies": {
"c8": "^10.1.2",
"mocha": "^11.0.0",
"safe-code-point": "^3.0.0",
"standard": "^17.0.0"
},
"files": [
"src",
"typings"
]
}