-
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.7 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.7 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/flex-plugin-test",
"version": "7.1.2",
"description": "Flex Plugin default test framework that uses Jest Preset",
"keywords": [
"flex",
"plugins",
"scripts",
"twilio",
"test"
],
"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",
"templates",
"jest-preset.js"
],
"scripts": {
"prebuild": "npm run clean",
"build": "cd ../.. && tsc -p \"packages/flex-plugin-test/tsconfig.json\"",
"clean": "rm -rf dist",
"lint": "eslint --ext ts src/",
"lint:fix": "npm run lint -- --fix",
"test": "cd ../.. && jest packages/flex-plugin-test --color",
"test:watch": "cd ../.. && jest packages/flex-plugin-test --watch --color"
},
"dependencies": {
"@babel/core": "^7.16.0",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@twilio/flex-dev-utils": "7.1.2",
"babel-jest": "^27.0.0",
"babel-polyfill": "^6.26.0",
"babel-preset-react-app": "^10.0.1",
"cheerio": "1.0.0-rc.12",
"jest": "^29.0.0",
"jest-environment-jsdom": "^27.0.0",
"jest-watch-typeahead": "^0.6.4",
"react": "^16",
"react-app-polyfill": "^1.0.6",
"react-dom": "^16",
"react-test-renderer": "^16"
},
"devDependencies": {
"@jest/types": "^27.0.0"
},
"engines": {
"node": "^16 || ^18 || ^20 || ^22"
},
"publishConfig": {
"access": "public"
}
}