-
Notifications
You must be signed in to change notification settings - Fork 129
/
package.json
81 lines (81 loc) · 2 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
81
{
"name": "@microsoft/bf-lu",
"version": "1.0.0",
"author": "Microsoft",
"bugs": "https://github.com/microsoft/botframework-cli/issues",
"main": "lib/parser/index.js",
"browser": "lib/parser/composerindex.js",
"engines": {
"node": ">=14.0.0"
},
"files": [
"/lib",
"/npm-shrinkwrap.json"
],
"homepage": "https://github.com/microsoft/botframework-cli",
"license": "MIT",
"mocha": {
"extension": [
".test.js",
".test.ts"
],
"recursive": true,
"timeout": 60000,
"require": [
"../../test/hook.js",
"source-map-support/register"
]
},
"repository": "https://github.com/microsoft/botframework-cli/tree/master/packages/lu",
"scripts": {
"prepack": "npm run clean && npm run build",
"posttest": "tslint -p test -t stylish",
"build": "tsc -b",
"clean": "rimraf ./.nyc_output ./lib ./package-lock.json ./tsconfig.tsbuildinfo",
"test": "mocha",
"coverage": "nyc npm run test",
"doc": "",
"doc:readme": "",
"version": "npm run doc:readme && git add README.md"
},
"nyc": {
"exclude": [
"**/lufile/generated/**",
"test/**"
]
},
"dependencies": {
"@types/node-fetch": "~2.5.5",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"antlr4": "4.9.2",
"axios": "~1.7.5",
"https-proxy-agent": "^5.0.0",
"chalk": "2.4.1",
"console-stream": "^0.1.1",
"deep-equal": "^1.0.1",
"delay": "^4.3.0",
"fs-extra": "^8.1.0",
"get-stdin": "^6.0.0",
"globby": "^11.0.4",
"intercept-stdout": "^0.1.2",
"lodash": "^4.17.21",
"semver": "^7.6.3",
"tslib": "^2.0.3"
},
"devDependencies": {
"@types/chai": "^4.2.0",
"@types/lodash": "~4.14.159",
"@types/mocha": "^10.0.6",
"@types/nock": "^11.1.0",
"@types/node": "^11.13.7",
"chai": "^4.4.1",
"mocha": "^10.4.0",
"nock": "^13.5.5",
"nyc": "^15.1.0",
"rimraf": "^2.6.3",
"ts-node": "^10.8.1",
"tslint": "^5.18.0",
"typescript": "^4.9.5",
"uuid": "^3.3.3"
}
}