offtext
Version:
Perform weird actions on your strings
96 lines (95 loc) • 2.23 kB
JSON
{
"name": "offtext",
"version": "0.3.6",
"description": "Perform weird actions on your strings",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"bin": {
"offtext": "dist/src/cli.js"
},
"scripts": {
"cm": "cz",
"prepublishOnly": "yarn build",
"prebuild": "yarn lint && yarn test",
"build": "yarn compile",
"postbuild": "yarn compress",
"dev": "tsc -w",
"test": "nyc mocha -r ts-node/register test/**/*.spec.ts",
"lint": "eslint --fix src/**/* test/**/*",
"compile": "tsc",
"compress": "uglifyjs dist/src/utils/chars.js -o dist/src/utils/chars.js -c -m --source-map"
},
"dependencies": {
"commander": "^6.2.0",
"tslib": "^2.0.3"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/mocha": "^8.0.4",
"@types/node": "^14.14.10",
"@types/uglify-js": "^3.11.1",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"chai": "^4.2.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.2.0",
"husky": "^4.3.4",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"source-map-support": "^0.5.19",
"ts-node": "^9.1.0",
"typescript": "^4.1.2",
"uglify-js": "^3.12.1"
},
"repository": {
"type": "git",
"url": "https://github.com/Huskydog9988/offtext.git"
},
"author": "Huskydog9988 (https://github.com/Huskydog9988)",
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run lint",
"DISABLE-prepare-commit-msg": "exec < /dev/tty && git cz changelog --hook || true"
}
},
"nyc": {
"all": true,
"extension": [
".ts",
".tsx"
],
"include": [
"src/**/*.ts"
],
"exclude": [
"**/*.d.ts"
],
"reporter": [
"html",
"text"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"engines": {
"node": ">=12.x.x",
"yarn": "^1.12"
},
"keywords": [
"unicode",
"ascii",
"offtext",
"fun",
"cli",
"gimmick",
"gimmicky"
]
}