-
Notifications
You must be signed in to change notification settings - Fork 281
/
Copy pathpackage.json
59 lines (59 loc) · 1.32 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": "botbuilder-dialogs-adaptive-runtime-core",
"preview": true,
"author": "Microsoft Corp.",
"version": "4.1.6",
"license": "MIT",
"description": "Bot Framework Adaptive Dialogs runtime core components",
"keywords": [
"botbuilder",
"botframework",
"bots",
"chatbots"
],
"bugs": {
"url": "https://github.com/Microsoft/botbuilder-js/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/botbuilder-js.git"
},
"main": "lib/index.js",
"types": "./lib/index.d.ts",
"typesVersions": {
"<3.9": {
"*": [
"_ts3.4/*"
]
}
},
"dependencies": {
"dependency-graph": "^1.0.0"
},
"devDependencies": {
"mocha": "^10.7.3",
"nyc": "^17.0.0"
},
"scripts": {
"build": "tsc -b",
"clean": "rimraf _ts3.4 lib tsconfig.tsbuildinfo",
"depcheck": "depcheck --config ../../.depcheckrc --ignores dependency-graph",
"lint": "eslint . --config ../../eslint.config.cjs",
"postbuild": "downlevel-dts lib _ts3.4/lib --checksum",
"test": "nyc mocha",
"test:min": "nyc --silent mocha --reporter dot"
},
"mocha": {
"extension": ".test.ts",
"recursive": true,
"require": [
"ts-node/register",
"source-map-support/register"
]
},
"files": [
"_ts3.4",
"lib",
"src"
]
}