-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
59 lines (59 loc) · 1.43 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
{
"name": "amazon-connect-taskjs",
"version": "2.0.0",
"author": "Amazon Web Services",
"license": "Apache-2.0",
"description": "Provides task support to AmazonConnect customers",
"main": "dist/amazon-connect-task.js",
"engines": {
"node": ">=12.0.0"
},
"directories": {
"lib": "./dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/amazon-connect/amazon-connect-taskjs.git"
},
"scripts": {
"test": "jest",
"release": "jest && webpack --mode=production",
"devo": "jest && webpack --mode=development",
"watch": "webpack --watch",
"dev": "webpack --mode=development && webpack --watch",
"clean": "rm -rf build/ node_modules build",
"release-watch": "npm run release && npm run watch"
},
"browserslist": [
"Firefox ESR",
"firefox > 67",
"chrome > 62",
"edge > 78",
"opera > 49"
],
"jest": {
"collectCoverage": true,
"coverageReporters": [
"json",
"text",
"cobertura",
"lcov"
],
"coverageDirectory": "build/jest-coverage"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"babel-loader": "^8.1.0",
"eslint": "^7.9.0",
"eslint-config-prettier": "^6.11.0",
"eslint-webpack-plugin": "^2.1.0",
"jest": "^26.4.2",
"ssri": ">=8.0.1",
"webpack": "^5.73.0",
"webpack-cli": "^3.3.12"
},
"npm-pretty-much": {
"runRelease": "always"
}
}