forked from microsoft/teams-ai
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.44 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
{
"private": true,
"name": "teams-ai",
"version": "0.1.0",
"workspaces": [
"./packages/*",
"./samples/*"
],
"scripts": {
"build": "wsrun -e -m -t build",
"build-docs": "wsrun -e -m build-docs",
"clean": "wsrun -m clean && npx rimraf node_modules",
"depcheck": "wsrun -m -l depcheck",
"dev:link": "wsrun --if is-not-private --bin=yarn link",
"dev:unlink": "wsrun --if is-not-private --bin=yarn unlink",
"lint": "wsrun -m -l lint",
"package": "wsrun -e -t -l --if is-not-private --bin yarn pack",
"test": "yarn tsc -b packages/teams-ai && npx mocha -r ts-node/register packages/teams-ai/src/**/*.spec.ts",
"test:mocha": "nyc --silent mocha --require ts-node/register \"./packages/teams-ai/src/*.spec.ts\" --exit --check-leaks",
"test:nyc:report": "npx rimraf coverage && nyc report"
},
"devDependencies": {
"@azure/logger": "^1.0.2",
"@azure/ms-rest-js": "2.7.0",
"@microsoft/api-extractor": "^7.15.1",
"@standardlabs/is-private": "^1.0.1",
"@types/jsonwebtoken": "9.0.2",
"@types/lodash": "^4.14.196",
"@types/mocha": "^10.0.1",
"@types/sinon": "^10.0.16",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"applicationinsights": "^2.7.0",
"browserify": "^17.0.0",
"chai": "^4.3.7",
"depcheck": "^1.4.3",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-jsdoc": "^46.4.5",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-only-warn": "^1.1.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-security": "^1.7.1",
"exorcist": "^1.0.1",
"mocha": "^6.2.3",
"mocha-junit-reporter": "^2.0.0",
"ms-rest-azure": "^2.6.2",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"prettier": "^3.0.1",
"proxyquire": "^2.1.3",
"read-text-file": "^1.1.0",
"replace-in-file": "^4.1.0",
"rimraf": "^3.0.2",
"shx": "^0.3.4",
"sinon": "^15.2.0",
"source-map-support": "^0.5.19",
"sponge": "^0.1.0",
"tinyify": "^4.0.0",
"ts-node": "^10.9.1",
"typedoc": "^0.24.8",
"typedoc-plugin-markdown": "^3.15.4",
"typescript": "^5.1.6",
"wsrun": "^5.2.4"
}
}