simple-sms-sender
Version:
Simple SMS sender to multiple recipients using Twilio
79 lines (78 loc) • 2.04 kB
JSON
{
"name": "simple-sms-sender",
"version": "0.4.0",
"description": "Simple SMS sender to multiple recipients using Twilio",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"author": "Jorge Barnaby <jorge.barnaby@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/yorch/simple-sms-sender#readme",
"bugs": {
"url": "https://github.com/yorch/simple-sms-sender/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/yorch/simple-sms-sender"
},
"scripts": {
"build": "run check && tsup",
"test": "vitest --run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"check": "tsc --noEmit",
"lint": "eslint '*/**/*.{js,ts,tsx}'",
"lint:fix": "run lint --fix",
"full": "run lint && run test:coverage && run build",
"clean": "rimraf ./coverage ./dist",
"prepublishOnly": "yon full",
"_postinstall": "husky",
"prepack": "pinst --disable",
"postpack": "pinst --enable"
},
"files": [
"dist"
],
"dependencies": {
"twilio": "^5.7.1"
},
"devDependencies": {
"@microsoft/api-extractor": "7.52.8",
"@tsconfig/node-lts": "22.0.2",
"@tsconfig/strictest": "2.0.5",
"@types/node": "20.19.2",
"@typescript-eslint/eslint-plugin": "8.35.0",
"@typescript-eslint/parser": "8.35.0",
"@vitest/coverage-v8": "3.2.4",
"eslint": "9.30.0",
"eslint-config-prettier": "10.1.5",
"eslint-plugin-prettier": "5.5.1",
"husky": "9.1.7",
"lint-staged": "16.1.2",
"pinst": "3.0.0",
"prettier": "3.6.2",
"rimraf": "6.0.1",
"tsup": "8.5.0",
"typescript": "5.8.3",
"vitest": "3.2.4",
"yarn-or-npm": "3.0.1"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --cache --fix"
]
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"sms",
"twilio"
],
"packageManager": "yarn@4.9.2"
}