UNPKG

1.46 kBJSONView Raw
1{
2 "name": "simple-sms-sender",
3 "version": "0.0.4",
4 "description": "Simple SMS sender to multiple recipients using Twilio",
5 "main": "dist/index.js",
6 "author": "Jorge Barnaby <jorge.barnaby@gmail.com>",
7 "license": "MIT",
8 "scripts": {
9 "build": "yon lint && yon build-ts",
10 "build-ts": "tsc --declaration",
11 "watch-ts": "tsc -w",
12 "lint": "tsc --noEmit && eslint '*/**/*.{js,ts,tsx}' --quiet --fix",
13 "clean": "rimraf ./dist",
14 "test": "yon lint && jest --forceExit --detectOpenHandles --coverage --verbose",
15 "watch-test": "yon test --watchAll",
16 "prepublish": "yon test && yon build",
17 "prepare": "husky install"
18 },
19 "private": false,
20 "repository": {
21 "type": "git",
22 "url": "https://github.com/yorch/simple-sms-sender"
23 },
24 "files": [
25 "dist"
26 ],
27 "dependencies": {
28 "twilio": "3.62.0"
29 },
30 "devDependencies": {
31 "@types/express": "4.17.11",
32 "@types/jest": "26.0.23",
33 "@types/qs": "6.9.6",
34 "@typescript-eslint/eslint-plugin": "4.23.0",
35 "@typescript-eslint/parser": "4.23.0",
36 "eslint": "7.26.0",
37 "eslint-config-prettier": "8.3.0",
38 "eslint-plugin-prettier": "3.4.0",
39 "husky": "6.0.0",
40 "jest": "26.6.3",
41 "lint-staged": "11.0.0",
42 "prettier": "2.3.0",
43 "rimraf": "3.0.2",
44 "ts-jest": "26.5.6",
45 "ts-node": "9.1.1",
46 "typescript": "4.2.4",
47 "yarn-or-npm": "3.0.1"
48 },
49 "lint-staged": {
50 "*.{js,ts,tsx}": [
51 "eslint --fix"
52 ]
53 }
54}