-
Notifications
You must be signed in to change notification settings - Fork 127
/
package.json
80 lines (80 loc) · 2.77 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
{
"name": "botframework-directlinejs",
"version": "0.15.6-0",
"description": "Client library for the Microsoft Bot Framework Direct Line 3.0 protocol",
"files": [
"dist/**/*",
"lib/**/*"
],
"main": "lib/directLine.js",
"types": "lib/directLine.d.ts",
"scripts": {
"build": "npm run build:typecheck && npm run build:babel -- --env-name test && npm run build:webpack -- --config webpack-development.config.js",
"build:babel": "babel --extensions .js,.ts --ignore src/**/*.spec.js,src/**/*.spec.ts,src/**/*.test.js,src/**/*.test.ts --out-dir lib src",
"build:typecheck": "tsc",
"build:webpack": "webpack",
"clean": "rimraf dist lib",
"prepublishOnly": "npm run build:typecheck && npm run build:babel && npm run build:webpack",
"start": "npm run build && concurrently --names \"babel,typecheck,webpack\" \"npm run build:babel -- --watch\" \"npm run build:typecheck -- --preserveWatchOutput --watch\" \"npm run build:webpack -- --config webpack-watch.config.js --watch\"",
"test": "jest --silent",
"watch": "npm run start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Microsoft/BotFramework-DirectLineJS.git"
},
"author": "Microsoft Corporation",
"license": "MIT",
"dependencies": {
"@babel/runtime": "7.14.8",
"botframework-streaming": "4.23.0",
"buffer": "6.0.3",
"core-js": "3.15.2",
"cross-fetch": "^3.1.5",
"jwt-decode": "3.1.2",
"rxjs": "5.5.12",
"url-search-params-polyfill": "8.1.1"
},
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.14.8",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.8",
"@babel/preset-typescript": "^7.14.5",
"@testing-library/dom": "^9.2.0",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.1",
"@types/jsonwebtoken": "^8.5.4",
"@types/node": "^18.15.11",
"@types/p-defer": "^2.0.0",
"@types/ws": "^8.5.4",
"babel-jest": "^29.5.0",
"babel-loader": "^8.2.2",
"babel-plugin-istanbul": "^6.0.0",
"babel-plugin-transform-inline-environment-variables": "^0.4.3",
"concurrently": "^6.2.0",
"dotenv": "^10.0.0",
"event-target-shim": "^6.0.2",
"express": "^4.18.2",
"get-port": "^5.1.1",
"global-agent": "^2.2.0",
"has-resolved": "^1.1.0",
"http-proxy": "^1.18.1",
"http-proxy-middleware": "^2.0.6",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jsdom": "^16.6.0",
"nock": "^13.1.1",
"node-fetch": "^2.6.7",
"on-error-resume-next": "^1.1.0",
"path-to-regexp": "^6.2.1",
"restify": "^11.0.0",
"rimraf": "^3.0.2",
"simple-update-in": "^2.2.0",
"typescript": "^4.9.5",
"webpack": "^5.76.2",
"webpack-cli": "^4.7.2",
"webpack-stats-plugin": "^1.0.3",
"ws": "^8.13.0"
}
}