This repository has been archived by the owner on Sep 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
109 lines (109 loc) · 3.01 KB
/
package.json
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
105
106
107
108
109
{
"name": "ui-custom-component",
"version": "1.0.0",
"description": "Small webpack based boilerplate for getting started with Boomi Flow UI components",
"repository": {
"type": "git",
"url": "https://github.com/manywho/ui-custom-component.git"
},
"main": "index.js",
"scripts": {
"start": "webpack-dev-server",
"build": "webpack -p --config webpack.production.config.js",
"build-no-source-map": "webpack -p --config webpack.production.config.js --devtool none",
"upload": "node upload.js",
"test-unit": "jest --watch",
"test-integration": "testcafe-live chrome ./src/__tests__/integration",
"test-integration-remote": "testcafe-live remote ./src/__tests__/integration --qr-code",
"update": "node update.js"
},
"author": "Dell Boomi",
"license": "MIT",
"dependencies": {
"dedent": "0.7.0",
"react": "16.3.2",
"react-dom": "16.3.3"
},
"devDependencies": {
"@types/enzyme": "3.1.11",
"@types/enzyme-adapter-react-16": "1.0.2",
"@types/jest": "23.1.4",
"@types/jquery": "3.3.29",
"@types/loglevel": "1.5.3",
"@types/react": "16.7.3",
"@types/react-dom": "16.0.9",
"awesome-typescript-loader": "5.2.0",
"clipboardy": "1.2.3",
"colors": "1.3.1",
"css-loader": "2.1.1",
"download": "7.1.0",
"enzyme": "3.9.0",
"enzyme-adapter-react-16": "1.9.1",
"fs-extra": "7.0.1",
"glob-promise": "3.4.0",
"inquirer": "6.0.0",
"inquirer-autocomplete-prompt": "1.0.1",
"jest": "24.1.0",
"jest-config": "24.1.0",
"mime-types": "2.1.19",
"mini-css-extract-plugin": "0.5.0",
"react-test-renderer": "16.4.1",
"recursive-copy": "2.0.9",
"request-promise-native": "1.0.5",
"source-map-loader": "0.2.3",
"style-loader": "0.21.0",
"testcafe": "1.0.1",
"testcafe-browser-provider-browserstack": "1.8.0",
"testcafe-live": "0.1.4",
"three-way-merger": "0.5.0",
"ts-jest": "24.0.0",
"tslint": "5.10.0",
"tslint-loader": "3.6.0",
"tslint-react": "3.6.0",
"typescript": "3.1.3",
"webpack": "4.27.1",
"webpack-cli": "3.1.2",
"webpack-dev-server": "3.1.14",
"write-file-webpack-plugin": "4.4.1"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"src/*.tsx",
"!src/index.tsx",
"!**/node_modules/**",
"!src/__test__/**/*.*"
],
"setupFiles": [
"./mocks/manywho.js"
],
"transform": {
".(ts|tsx)": "ts-jest"
},
"testRegex": "/__tests__/unit.*",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"moduleDirectories": [
"node_modules",
"<rootDir>/src"
],
"moduleNameMapper": {
"^.+\\.css$": "<rootDir>/mocks/styles.js"
}
},
"flow": {
"tenantId": "c5a50df2-f24b-4342-9fbd-1c91747ac0cf",
"id": "3f95386d-ee6c-447a-b863-a210fe4a4c22",
"versionId": "",
"filenames": {
"js": "custom-component.js",
"css": "custom-component.css"
}
},
"peerDependencies": {},
"bundledDependencies": [],
"optionalDependencies": {}
}