forked from purecloudlabs/genesys-cloud-client-logger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.23 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
{
"name": "genesys-cloud-client-logger",
"version": "4.2.2",
"description": "Common logger for genesys cloud client application to upload logs server",
"main": "dist/src/index.js",
"module": "dist/es/index.js",
"web": "dist/genesys-cloud-client-logger.min.js",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"clean": "rimraf dist",
"start": "npm run build:dev && npm run test:server",
"build": "ts-node scripts/build.ts",
"build:es": "tsc -p . --outDir ./dist/es --target es2015 --module es2015",
"build:cjs": "tsc -p .",
"build:dev": "npm run clean && tsc -p . && webpack",
"build:cdn": "webpack --env.development && webpack --env.production",
"build:manifest": "ts-node scripts/build-cdn-with-manifest.ts",
"lint": "eslint -c .eslintrc.js --ext .ts src",
"lint:fix": "npm run lint -- --fix",
"test": "npm run lint && npm run test:unit",
"test:unit": "jest --collectCoverage",
"test:watch": "jest --watch --collectCoverage=false --runInBand",
"test:server": "stupid-server -s",
"prepare": "npm run build"
},
"author": "[email protected]",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@types/jest": "^27.5.1",
"@types/safe-json-stringify": "^1.1.0",
"@types/uuid": "^7.0.3",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"babel-loader": "^8.1.0",
"eslint": "^7.32.0",
"eslint-plugin-jsdoc": "^36.1.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"flush-promises": "^1.0.2",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"nock": "^13.0.11",
"pre-push": "^0.1.1",
"rimraf": "^3.0.2",
"stupid-server": "^0.2.5",
"ts-jest": "^28.0.3",
"ts-loader": "^8.4.0",
"ts-node": "^10.4.0",
"typescript": "^4.7.2",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"@babel/preset-typescript": "^7.9.0",
"@babel/runtime": "^7.9.2",
"axios": "^0.27.2",
"exponential-backoff": "^3.1.0",
"safe-json-stringify": "^1.2.0",
"strict-event-emitter-types": "^2.0.0",
"uuid": "^3.4.0"
}
}