-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
66 lines (66 loc) · 2.18 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": "@microsoft/ocsdk",
"version": "0.5.11-0",
"description": "Microsoft Omnichannel SDK",
"files": [
"dist/**/*",
"lib/**/*"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "karma start karma.conf.js",
"start": "webpack-dev-server",
"watch": "webpack --watch --config webpack.config.js --mode development",
"build:tsc": "tsc --project tsconfig.json",
"build:babel": "babel src --extensions .js,.ts --out-dir lib --verbose",
"build:dev": "webpack --config webpack.config.js --mode development",
"build:prod": "export NODE_OPTIONS=--openssl-legacy-provider && npm run build:tsc && npm run build:babel && webpack --config webpack.config.js --mode production",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "eslint src --ext .ts"
},
"repository": {
"type": "git",
"url": "https://github.com/microsoft/omnichannel-sdk.git"
},
"keywords": [],
"author": "Microsoft Corporation",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.5",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.6",
"@babel/preset-typescript": "^7.15.0",
"@dhigroup/karma-vsts-reporter": "^1.3.0",
"@types/jasmine": "^3.9.1",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"axios-mock-adapter": "^2.0.0",
"eslint": "^7.32.0",
"eslint-plugin-security": "^1.4.0",
"istanbul-instrumenter-loader": "^3.0.1",
"jasmine": "^3.9.0",
"karma": "^6.3.16",
"karma-chrome-launcher": "^3.1.0",
"karma-cli": "^2.0.0",
"karma-coverage-istanbul-reporter": "^2.1.1",
"karma-jasmine": "^2.0.1",
"karma-spec-reporter": "0.0.32",
"karma-webpack": "^4.0.2",
"prettier": "^1.19.1",
"ts-loader": "^8.4.0",
"typescript": "^4.9.5",
"webpack": "^4.47.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"@babel/runtime": "^7.15.4",
"@types/node": "^12.20.26",
"axios": "^1.7.4",
"axios-retry": "^3.9.1"
}
}