-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.44 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.44 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
{
"name": "@twilio/flex-plugin-e2e-tests",
"version": "7.1.2",
"description": "Flex Plugin E2E Tests framework",
"keywords": [
"flex",
"plugins",
"scripts",
"twilio"
],
"homepage": "https://github.com/twilio/flex-plugin-builder",
"bugs": {
"url": "https://github.com/twilio/flex-plugin-builder/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/twilio/flex-plugin-builder.git"
},
"license": "MIT",
"author": "Flex Runtime <flex-runtime@twilio.com>",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prebuild": "npm run clean",
"build": "cd ../.. && tsc -p \"packages/flex-plugin-e2e-tests/tsconfig.json\"",
"clean": "rm -rf dist",
"create": "bin/e2e create $1",
"lint": "eslint --ext ts src/",
"lint:fix": "npm run lint -- --fix",
"start": "node dist",
"test": "exit 0"
},
"dependencies": {
"@twilio/flex-dev-utils": "7.1.2",
"@twilio/flex-plugins-api-client": "7.1.2",
"axios": "^0.24.0",
"lodash": "4.17.21",
"node-fetch": "^3.3.2",
"package-json": "^7.0.0",
"puppeteer": "^22.13.1",
"replace-in-file": "^6.3.2",
"semver": "^7.3.5"
},
"devDependencies": {
"@types/lodash": "4.14.177",
"@types/node-fetch": "^2.6.12",
"@types/semver": "^7.3.9"
},
"engines": {
"node": "^16 || ^18 || ^20 || ^22"
},
"publishConfig": {
"access": "public"
}
}