stringman
Version:
Stringman does string manipulation and other string operations. Do anything from lightening color codes to swapping email address in a string!
61 lines (60 loc) • 1.86 kB
JSON
{
"name": "stringman",
"version": "0.13.4",
"description": "Stringman does string manipulation and other string operations. Do anything from lightening color codes to swapping email address in a string!",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"source": "src/index.ts",
"scripts": {
"test": "jest --config jestconfig.json",
"_clear": "rimraf lib/*",
"_tsc": "tsc",
"build": "run-s _clear _tsc docs",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"watch": "tsc --watch",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint -c .eslintrc.js --ext .ts",
"docs": "rimraf ./docs && typedoc --exclude \"**/**/*+(index|test|spec|common).ts\" --name Stringman --out docs/ src/ && touch ./docs/.nojekyll"
},
"keywords": [
"regex",
"string manipulation",
"manipulation",
"colors",
"numbers",
"word count",
"reading time"
],
"author": {
"name": "Joey Gauthier",
"email": "joey@joeyg.me",
"url": "https://joeyg.me"
},
"repository": {
"type": "git",
"url": "https://github.com/jgdigitaljedi/stringman.git"
},
"bugs": {
"url": "https://github.com/jgdigitaljedi/stringman/issues"
},
"homepage": "https://github.com/jgdigitaljedi/stringman",
"license": "ISC",
"devDependencies": {
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "^4.24.0",
"@typescript-eslint/parser": "^4.24.0",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"jest": "^26.6.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.0",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.6",
"typedoc": "^0.20.36",
"typescript": "^4.2.4"
}
}