UNPKG

sms-parse

Version:
61 lines (60 loc) 1.8 kB
{ "name": "sms-parse", "version": "0.0.7", "description": "", "scripts": { "build": "tsc --p tsconfig.build.json", "lint": "npm run prettier:check && npm run eslint", "lint:fix": "npm run eslint:fix && npm run prettier:fix", "prettier:cli": "prettier \"**/*.ts\" \"**/*.js\"", "prettier:check": "npm run prettier:cli -- -l", "prettier:fix": "npm run prettier:cli -- --write", "eslint": "eslint -c .eslintrc.js --ignore-path .eslintignore --ext .js,.ts --report-unused-disable-directives .", "eslint:fix": "npm run eslint -- --fix", "preversion": "", "version": "npm run build && git add -A dist", "postversion": "git push && git push --tags", "prebuild": "npm run clean", "clean": "rm -R tsconfig.build.tsbuildinfo dist/ ||true", "prepare": "husky install" }, "types": "dist/index.d.ts", "keywords": [ "sms", "sms-parse", "sms-parser" ], "repository": { "type": "git", "url": "https://github.com/alexnfsc175/sms-parse" }, "author": "Alex Pereira | Getconnect", "license": "ISC", "devDependencies": { "@types/node": "^14.17.19", "@typescript-eslint/eslint-plugin": "^4.32.0", "@typescript-eslint/parser": "^4.32.0", "eslint": "^7.32.0", "eslint-config-prettier": "^6.15.0", "eslint-plugin-eslint-plugin": "^2.3.0", "eslint-plugin-mocha": "^8.2.0", "husky": "^7.0.2", "lint-staged": "^11.1.2", "nyc": "^15.1.0", "prettier": "^2.4.1", "source-map-support": "^0.5.20", "typescript": "^4.4.3" }, "files": [ "README.md", "index.js", "index.d.ts", "dist", "src", "!*/__tests__" ], "dependencies": { "grapheme-splitter": "^1.0.4", "gsm7": "^1.3.1" } }