-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.17 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
{
"name": "@jpfulton/net-sms-notifier-cli",
"version": "1.0.9",
"description": "A Twilio-based SMS notifier CLI for network administration.",
"keywords": [
"twilio",
"sms",
"administration",
"cli"
],
"main": "./dist",
"repository": "[email protected]:jpfulton/net-sms-notifier-cli.git",
"author": "J. Patrick Fulton <[email protected]>",
"license": "MIT",
"packageManager": "[email protected]",
"type": "module",
"engines": {
"node": ">=18.16.0"
},
"bin": {
"sms-notify-cli": "dist/index.js"
},
"devDependencies": {
"@tsconfig/node18": "^18.2.1",
"@types/node": "^20.5.7",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"eslint": "^8.48.0",
"typescript": "^5.2.2"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^11.0.0",
"twilio": "^4.16.0"
},
"scripts": {
"build": "tsc",
"build-debug": "tsc --project tsconfig.debug.json",
"clean": "rm -rf dist",
"lint": "eslint . --fix",
"execute": "yarn clean && yarn build && sudo node ./dist/index.js",
"debug": "yarn clean && yarn build-debug && sudo node --inspect-brk ./dist/index.js"
}
}