strind
Version:
Partition strings based on character indices
68 lines (67 loc) • 1.54 kB
JSON
{
"name": "strind",
"version": "0.3.1",
"license": "MIT",
"description": "Partition strings based on character indices",
"author": "Eric Liu (https://github.com/metonym)",
"main": "lib/strind.js",
"types": "lib/strind.d.ts",
"scripts": {
"build": "tsc",
"lint": "tslint --fix -p . -c tslint.json",
"test": "jest --coverage",
"test:tdd": "jest --watch",
"prepublishOnly": "yarn build"
},
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"@types/jest": "^24.0.17",
"husky": "^3.0.5",
"jest": "^24.9.0",
"prettier": "^1.18.2",
"pretty-quick": "^2.0.0",
"ts-jest": "^24.0.2",
"tslint": "^5.19.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.6.2"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint && pretty-quick --staged",
"pre-push": "yarn test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"prettier": {
"tabWidth": 2,
"semi": true,
"singleQuote": true
},
"jest": {
"preset": "ts-jest"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"repository": {
"type": "git",
"url": "https://github.com/metonym/strind.git"
},
"homepage": "https://github.com/metonym/strind",
"keywords": [
"string",
"string manipulation",
"partition",
"char",
"index",
"indices",
"utility"
],
"files": [
"lib"
],
"bugs": "https://github.com/metonym/strind/issues"
}