-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.57 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.57 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
{
"name": "@twilio/create-flex-plugin",
"version": "7.1.1",
"description": "Toolkit to create a new Twilio Flex plugin",
"keywords": [
"flex",
"plugin",
"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",
"bin": {
"create-flex-plugin": "bin/create-flex-plugin"
},
"directories": {
"lib": "src",
"bin": "bin",
"test": "__tests__"
},
"files": [
"bin",
"dist",
"templates"
],
"scripts": {
"prebuild": "npm run clean",
"build": "cd ../.. && tsc -p \"packages/create-flex-plugin/tsconfig.json\"",
"clean": "rm -rf dist",
"lint": "eslint --ext ts src/",
"lint:fix": "npm run lint -- --fix",
"test": "cd ../.. && jest packages/create-flex-plugin --color",
"test:watch": "cd ../.. && jest packages/create-flex-plugin --watch --color"
},
"dependencies": {
"@twilio/flex-dev-utils": "7.1.1",
"esm-wallaby": "^3.2.30",
"tmp": "^0.2.1",
"yargs": "^16.2.0"
},
"overrides": {
"**/cheerio": "1.0.0-rc.12"
},
"devDependencies": {
"@twilio/flex-plugin": "7.1.1",
"@twilio/flex-plugin-scripts": "7.1.1",
"@twilio/flex-ui": "^1",
"@types/tmp": "^0.2.1",
"@types/yargs": "^16.0.4"
},
"publishConfig": {
"access": "public"
}
}