-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
89 lines (89 loc) · 4.37 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "sipgateio-node-examples",
"version": "1.0.0",
"description": "Examples for the sipgateio-node examples",
"main": "index.js",
"scripts": {
"call": "ts-node ./call/call.ts",
"ids:get_common": "ts-node ./id/get_common_ids.ts",
"contacts:create:contact": "ts-node ./contacts/contacts_create_contact.ts",
"contacts:get:contacts": "ts-node ./contacts/contacts_get_contacts.ts",
"contacts:delete:all:private": "ts-node ./contacts/contacts_delete_all_private.ts",
"contacts:delete:all:shared": "ts-node ./contacts/contacts_delete_all_shared.ts",
"contacts:delete:by:id": "ts-node ./contacts/contacts_delete_by_id.ts",
"contacts:import:vcard:private": "ts-node ./contacts/contacts_import_vcard_private.ts",
"contacts:import:vcard:shared": "ts-node ./contacts/contacts_import_vcard_shared.ts",
"contacts:import:csv": "ts-node ./contacts/contacts_import_csv.ts",
"contacts:export:csv": "ts-node ./contacts/contacts_export_csv.ts",
"contacts:export:json": "ts-node ./contacts/contacts_export_json.ts",
"contacts:export:vcards": "ts-node ./contacts/contacts_export_vcards.ts",
"fax": "ts-node ./fax/fax.ts",
"fluent:webhook": "ts-node ./fluent/webhook.ts",
"settings:set:log": "ts-node ./settings/settings_set_log.ts",
"settings:set:url:incoming": "ts-node ./settings/settings_set_url_incoming.ts",
"settings:set:url:outgoing": "ts-node ./settings/settings_set_url_outgoing.ts",
"settings:whitelist:clear": "ts-node ./settings/settings_whitelist_clear.ts",
"settings:whitelist:disable": "ts-node ./settings/settings_whitelist_disable.ts",
"settings:whitelist:set": "ts-node ./settings/settings_whitelist_set.ts",
"settings:get:current": "ts-node ./settings/settings_get_current.ts",
"sms:send:extension": "ts-node ./sms/sms_send_extension.ts",
"sms:send:extension:timed": "ts-node ./sms/sms_send_extension_timed.ts",
"sms:send:phone": "ts-node ./sms/sms_send_phone.ts",
"webhook:gather": "ts-node ./webhook/webhook_gather.ts",
"webhook:log:incoming:calls": "ts-node ./webhook/webhook_log_incoming_calls.ts",
"webhook:play:audio": "ts-node ./webhook/webhook_play_audio.ts",
"webhook:play:audio:and:hangup": "ts-node ./webhook/webhook_play_audio_and_hangup.ts",
"webhook:redirect": "ts-node ./webhook/webhook_redirect_call.ts",
"webhook:reject": "ts-node ./webhook/webhook_reject.ts",
"webhook:voicemail": "ts-node ./webhook/webhook_voicemail.ts",
"history:fetch:all": "ts-node ./history/history_fetch_all.ts",
"history:filter:entries": "ts-node ./history/history_filter_entries.ts",
"history:fetch:by:id": "ts-node ./history/history_fetch_by_id.ts",
"history:delete:by:id": "ts-node ./history/history_delete_by_id.ts",
"history:delete:by:list:of:ids": "ts-node ./history/history_delete_by_list_of_ids.ts",
"history:batch:update:events": "ts-node ./history/history_batch_update_events.ts",
"history:export:as:csv:string": "ts-node ./history/history_export_as_csv_string.ts",
"numbers:get:all": "ts-node ./numbers/numbers_get_all.ts",
"rtcm:announce": "ts-node ./rtcm/rtcm_announce.ts",
"rtcm:hangup": "ts-node ./rtcm/rtcm_hangup.ts",
"rtcm:hold": "ts-node ./rtcm/rtcm_hold.ts",
"rtcm:list:all:established:calls": "ts-node ./rtcm/rtcm_list_all_established_calls.ts",
"rtcm:mute": "ts-node ./rtcm/rtcm_mute.ts",
"rtcm:record": "ts-node ./rtcm/rtcm_record.ts",
"rtcm:send:dtmf": "ts-node ./rtcm/rtcm_send_dtmf.ts",
"rtcm:transfer": "ts-node ./rtcm/rtcm_transfer.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sipgate-io/sipgateio-node-examples.git"
},
"author": "",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/sipgate-io/sipgateio-node-examples/issues"
},
"homepage": "https://github.com/sipgate-io/sipgateio-node-examples#readme",
"dependencies": {
"dotenv": "^8.6.0",
"ts-node": "^8.6.2",
"typescript": "^3.9.9",
"sipgateio": "^2.11.0"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/node": "^14.17.2",
"@typescript-eslint/eslint-plugin": "^2.9.0",
"@typescript-eslint/parser": "^2.9.0",
"eslint": "^6.7.1",
"eslint-config-prettier": "^6.7.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-autofix": "0.0.9",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-sort-imports-es6-autofix": "^0.5.0",
"eslint-plugin-standard": "^4.1.0",
"prettier": "^1.19.1"
}
}