-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.41 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.41 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
{
"name": "@twilio/flex-plugins-api-client",
"version": "7.1.1",
"description": "Flex Plugins API Client",
"keywords": [
"flex",
"flex plugins",
"flex plugins api",
"flex plugins api client",
"flex plugins client",
"plugins"
],
"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",
"directories": {
"lib": "src",
"test": "__tests__"
},
"files": [
"dist"
],
"scripts": {
"prebuild": "npm run clean",
"build": "cd ../.. && tsc -p \"packages/flex-plugins-api-client/tsconfig.json\"",
"clean": "rm -rf dist",
"lint": "eslint --ext ts src/",
"lint:fix": "npm run lint -- --fix",
"test": "cd ../.. && jest packages/flex-plugin-scripts --color",
"test:watch": "cd ../.. && jest packages/flex-plugins-api-client --watch --color"
},
"overrides": {
"**/cheerio": "1.0.0-rc.12"
},
"dependencies": {
"@twilio/flex-dev-utils": "7.1.1",
"@twilio/flex-plugins-utils-exception": "7.1.1",
"url-join": "^4.0.1"
},
"devDependencies": {
"@types/url-join": "^4.0.1"
},
"publishConfig": {
"access": "public"
}
}