package.json
{
"name": "@thebespokepixel/string",
"version": "2.0.2",
"description": "Esoteric string formatting",
"main": "index.js",
"types": "index.d.ts",
"type": "module",
"files": [
"index.js",
"index.d.ts"
],
"dependencies": {
"boxen": "^6.2.1",
"term-ng": "^3.0.4"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"@types/estree": "^0.0.50",
"ava": "^4.0.0-rc.1",
"c8": "^7.10.0",
"documentation-theme-bespoke": "^2.0.14",
"rollup": "^2.59.0",
"rollup-plugin-cleanup": "^3.2.1",
"xo": "^0.46.4"
},
"scripts": {
"build": "rollup -c && npm run readme",
"test": "xo && c8 --reporter=text ava",
"doc-serve": "documentation serve --watch --theme node_modules/documentation-theme-bespoke --github --config src/docs/documentation.yml --project-name $npm_package_name --project-version $npm_package_version src/index.js",
"doc-build": "documentation build --format html --output docs --theme node_modules/documentation-theme-bespoke --github --config src/docs/documentation.yml --project-name $npm_package_name --project-version $npm_package_version src/index.js",
"readme": "compile-readme -u src/docs/example.md src/docs/readme.md > readme.md",
"coverage": "c8 --reporter=lcov ava; open coverage/lcov-report/index.html",
"prepublishOnly": "npx -p typescript tsc index.js --declaration --allowJs --emitDeclarationOnly"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thebespokepixel/string.git"
},
"keywords": [
"cli",
"string",
"unicode",
"utf8",
"pad",
"superscript",
"subscript"
],
"author": "Mark Griffiths <mark@thebespokepixel.com> (http://thebespokepixel.com/)",
"copyright": {
"year": "2021",
"owner": "The Bespoke Pixel"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/thebespokepixel/string/issues"
},
"homepage": "https://github.com/thebespokepixel/string#readme",
"xo": {
"semicolon": false,
"esnext": true,
"ignores": [
"index.js",
"index.d.ts",
"docs/**",
"coverage/**"
]
},
"badges": {
"github": "thebespokepixel",
"npm": "thebespokepixel",
"libraries-io": "TheBespokePixel",
"codeclimate": "57bf94c1bc96b928b8cd",
"name": "string",
"providers": {
"status": {
"text": "utility",
"color": "green"
},
"aux1": {
"title": "github",
"text": "source",
"color": "4E73B6",
"link": "https://github.com/thebespokepixel/string"
}
},
"readme": {
"Publishing Status": [
[
"npm",
"libraries-io-npm"
],
[
"travis-com",
"rollup"
]
],
"Development Status": [
[
"travis-com-dev",
"libraries-io-github"
],
[
"snyk",
"code-climate",
"code-climate-coverage"
]
],
"Documentation/Help": [
"inch",
"twitter"
]
},
"docs": [
[
"aux1",
"travis"
],
[
"code-climate",
"code-climate-coverage"
],
[
"snyk",
"libraries-io-npm"
]
]
},
"engines": {
"node": ">=10.0"
}
}