-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
67 lines (67 loc) · 1.66 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
{
"name": "amazon-connect-customer-profiles",
"version": "1.0.1",
"main": "dist/amazon-connect-customer-profiles.js",
"description": "Provides access to customerProfiles for connect customers.",
"scripts": {
"test": "jest",
"release": "jest && webpack --config ./webpack/customer-profiles.config.js && webpack --config ./webpack/customer-profiles-min.config.js",
"clean": "rm -rf build/ node_modules build"
},
"jest": {
"testEnvironment": "jsdom",
"setupFilesAfterEnv": [
"./test/jestSetup.js"
],
"transform": {
".(js|jsx)$": "babel-jest"
},
"testRegex": "/src/.*\\.spec\\.js$",
"moduleFileExtensions": [
"js",
"json"
],
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.js"
],
"coverageReporters": [
"json",
"html",
"cobertura",
"lcov"
]
},
"directories": {
"lib": "./dist"
},
"files": [
"dist/"
],
"npm-pretty-much": {
"runRelease": "always"
},
"devDependencies": {
"@babel/core": "^7.17.10",
"@babel/eslint-parser": "^7.17.0",
"@babel/preset-env": "^7.17.10",
"babel-jest": "^28.0.3",
"babel-loader": "^8.2.5",
"eslint": "^8.14.0",
"eslint-plugin-jest": "^26.1.5",
"jest": "^27.5.1",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2",
"isomorphic-fetch": "3.0.0"
},
"engines": {
"node": ">14.0.0"
},
"author": "Amazon Web Services",
"license": "Apache-2.0",
"homepage": "https://github.com/amazon-connect/amazon-connect-customer-profiles#readme",
"repository": {
"type": "git",
"url": "https://github.com/amazon-connect/amazon-connect-customer-profiles.git"
}
}