-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.79 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "simple-sms-sender",
"version": "0.1.1",
"description": "Simple SMS sender to multiple recipients using Twilio",
"main": "dist/index.js",
"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": "yon check && yon build:ts",
"build:ts": "tsc --declaration",
"build:watch": "tsc -w",
"test": "jest --forceExit --detectOpenHandles --coverage --verbose",
"test:watch": "yon test --watchAll",
"check": "tsc --noEmit",
"lint": "eslint '*/**/*.{js,ts,tsx}' --quiet --fix",
"full": "yon lint && yon test && yon build",
"clean": "rimraf ./coverage ./dist",
"prepublishOnly": "yon full",
"prepare": "husky install"
},
"files": [
"dist"
],
"dependencies": {
"twilio": "^4.7.2"
},
"devDependencies": {
"@types/jest": "27.5.2",
"@types/node": "20.8.0",
"@typescript-eslint/eslint-plugin": "6.7.3",
"@typescript-eslint/parser": "6.7.4",
"eslint": "8.46.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-prettier": "5.0.0",
"husky": "8.0.3",
"jest": "27.5.1",
"lint-staged": "13.2.3",
"prettier": "3.0.1",
"rimraf": "5.0.5",
"ts-jest": "27.1.5",
"ts-node": "10.9.1",
"typescript": "4.9.5",
"yarn-or-npm": "3.0.1"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --cache --fix"
]
},
"engines": {
"node": ">=12"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"sms",
"twilio"
],
"packageManager": "yarn@3.3.0"
}