ends-with-string
Version:
Check if a string or buffer ends with a given string
58 lines (57 loc) • 1.22 kB
JSON
{
"name": "ends-with-string",
"version": "2.0.0",
"description": "Check if a string or buffer ends with a given string",
"main": ".auto/build/index.js",
"author": "Connor White",
"license": "MIT",
"private": false,
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/bconnorwhite/ends-with-string.git"
},
"keywords": [
"string",
"ends",
"with",
"buffer",
"endsWith",
"char",
"end",
"check",
"last"
],
"exports": "./.auto/build/index.js",
"types": ".auto/build/index.d.ts",
"files": [
".auto/build/**/!(tsconfig.tsbuildinfo)"
],
"engines": {
"node": "^14.13.1 || >=16.0.0"
},
"scripts": {
"build": "auto build",
"dev": "auto dev",
"lint": "auto lint",
"prepack": "yarn build",
"release": "auto release",
"test": "auto test",
"typecheck": "auto typecheck"
},
"dependencies": {
"char-to-string": "^2.0.0"
},
"devDependencies": {
"autorepo": "^0.1.7"
},
"eslintConfig": {
"extends": "@autosoft/eslint-config"
},
"jest": {
"preset": "@autosoft/jest-preset"
},
"npmpackagejsonlint": {
"extends": "npm-package-json-lint-config-auto"
}
}