-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 4.59 KB
/
Copy pathpackage.json
File metadata and controls
104 lines (104 loc) · 4.59 KB
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "twilio-synthetic-call-data-generator",
"version": "1.0.0",
"description": "Production-ready synthetic call data generator using Twilio Programmable Voice, OpenAI, and Segment CDP with intelligent customer-agent pairing and Voice Intelligence transcription",
"main": "index.js",
"scripts": {
"test": "jest",
"test:unit": "jest tests/unit --passWithNoTests",
"test:integration": "jest tests/integration --passWithNoTests",
"test:e2e": "jest tests/e2e --passWithNoTests",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:ci": "jest --ci --coverage --watchAll=false",
"test:api": "newman run postman/collection.json -e postman/environment.json",
"test:api:config": "newman run --config newman.config.json",
"newman:run": "newman run postman/collection.json -e postman/environment.json",
"newman:1cps": "newman run postman/collection.json -e postman/environment.json --delay-request 1000",
"newman:5cps": "newman run postman/collection.json -e postman/environment.json --delay-request 200",
"lint": "eslint functions scripts tests --ext .js,.ts",
"lint:fix": "eslint functions scripts tests --ext .js,.ts --fix",
"format": "prettier --write \"functions/**/*.{js,ts}\" \"scripts/**/*.{js,ts}\" \"tests/**/*.{js,ts}\"",
"format:check": "prettier --check \"functions/**/*.{js,ts}\" \"scripts/**/*.{js,ts}\" \"tests/**/*.{js,ts}\"",
"twilio:deploy": "twilio serverless:deploy",
"twilio:deploy:dev": "twilio serverless:deploy --environment=dev",
"twilio:deploy:prod": "twilio serverless:deploy --environment=production",
"twilio:start": "twilio serverless:start",
"twilio:logs": "twilio serverless:list",
"dev": "twilio serverless:start --live",
"build": "npm run lint && npm run test:ci && npm run format:check",
"setup": "node scripts/setup.js",
"provision-numbers": "node scripts/provision-phone-numbers.js",
"configure-numbers": "node scripts/configure-phone-numbers.js",
"validate": "npm run build && npm run test:api",
"validate:env": "node scripts/validate-env-example.js",
"validate:env:example": "node scripts/validate-env-example.js --example",
"validate:env:current": "node scripts/validate-env-example.js --env",
"validate:transcriptions": "node scripts/validate-transcriptions.js",
"validate:transcriptions:verbose": "node scripts/validate-transcriptions.js --verbose",
"validate:conferences": "node scripts/validate-specific-conferences.js",
"smoke-test": "node scripts/smoke-test.js",
"pre-deploy": "node scripts/pre-deployment-check.js",
"post-deploy": "node scripts/post-deployment-validation.js",
"deploy": "npm run pre-deploy && twilio serverless:deploy && npm run post-deploy",
"deploy:safe": "npm run pre-deploy && npm run smoke-test && twilio serverless:deploy && npm run post-deploy",
"generate": "node scripts/generate-bulk-calls.js",
"generate:100": "node scripts/generate-bulk-calls.js --count 100 --cps 1",
"generate:1000": "node scripts/generate-bulk-calls.js --count 1000 --cps 5",
"configure-debugger": "node scripts/configure-debugger-webhook.js",
"create-call": "node src/main.js",
"start": "node src/main.js",
"clean": "rm -rf node_modules coverage test-results .nyc_output",
"reinstall": "npm run clean && npm install"
},
"keywords": [
"twilio",
"synthetic-data",
"call-data-generator",
"voice-intelligence",
"openai",
"segment",
"cdp",
"serverless",
"test-data",
"tdd"
],
"author": "MC",
"license": "MIT",
"devDependencies": {
"@segment/analytics-node": "^2.3.0",
"@types/jest": "^29.5.5",
"@types/node": "^20.5.0",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.6.2",
"newman": "^6.0.0",
"prettier": "^3.0.2",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
},
"dependencies": {
"@octokit/rest": "^20.0.0",
"@twilio-labs/serverless-runtime-types": "^2.2.1",
"axios": "^1.12.2",
"dotenv": "^16.3.1",
"openai": "^6.2.0",
"twilio": "^5.10.2"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/wittyreference/twilio-synthetic-call-data-generator.git"
},
"bugs": {
"url": "https://github.com/wittyreference/twilio-synthetic-call-data-generator/issues"
},
"homepage": "https://github.com/wittyreference/twilio-synthetic-call-data-generator#readme"
}