string-encode
Version:
Convert different types of JavaScript String to/from Uint8Array
81 lines (80 loc) • 1.87 kB
JSON
{
"name": "string-encode",
"version": "0.2.2",
"description": "Convert different types of JavaScript String to/from Uint8Array",
"reveal": true,
"publishConfig": {
"access": "public"
},
"module": "string-encode.js",
"main": "dist/string-encode.js",
"unpkg": "dist/string-encode.min.js",
"files": [
"string-encode.*",
"dist/*",
".babelrc",
"*.md"
],
"scripts": {
"build": "rollup -c rollup.config.js",
"test": "npx mocha --reporter spec",
"coverage": "npx nyc --reporter=lcov --reporter=text-summary npm run test",
"verup": "npx verup",
"jest": "npx jest",
"jest:watch": "npx jest --watch",
"jest:cov": "npx jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/duzun/string-encode.js.git"
},
"keywords": [
"String",
"Multibyte",
"UTF8",
"Buffer",
"Uint8Array",
"binary",
"hex"
],
"author": "Dumitru Uzun <contact@duzun.me> (https://DUzun.Me)",
"license": "MIT",
"bugs": {
"url": "https://github.com/duzun/string-encode.js/issues"
},
"homepage": "https://duzun.me/playground/encode#utf8Decode=X%C3%97%C2%A9",
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"chai": "^4.2.0",
"esm": "^3.2.25",
"mocha": "^6.2.3",
"rollup": "^2.28.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-terser": "^7.0.2"
},
"browserslist": "> 0.25%, not dead",
"jshintConfig": {
"esversion": 9,
"laxbreak": true,
"laxcomma": true,
"undef": true,
"unused": true,
"sub": true,
"expr": true,
"bitwise": false,
"eqeqeq": false,
"boss": true,
"eqnull": true,
"scripturl": true,
"-W041": false
},
"extra": {
"verup": {
"files": [
"string-encode.js",
"package-lock.json"
]
}
}
}