-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.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
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "directline-jabber",
"version": "2.0.1",
"description": "Automated testing of Microsoft BotFramework chat conversations using directline",
"main": "out/processor.js",
"scripts": {
"prepare": "npm run build",
"prepublishOnly": "npm run test",
"test": "mocha --opts mocha.opts",
"test-coverage": "nyc mocha --opts mocha.opts",
"build": "tsc",
"buildserver": "npm run test-coverage",
"start": "node out/app.js",
"patch": "npm version patch",
"pack": "npm pack"
},
"files": [
"out/**/*"
],
"types": "out/processor.d.ts",
"nyc": {
"include": [
"src/**/*.ts"
],
"all": true,
"exclude": [
"src/app.ts",
"src/tests/**"
],
"extension": [
".ts"
],
"reporter": [
"text-summary",
"html",
"lcov"
],
"sourceMap": true,
"instrument": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/jvanderbiest/directline-jabber.git"
},
"keywords": [
"botframework",
"directline",
"automated",
"testing",
"emulator",
"transcript",
"chat"
],
"author": "Jonas Van der Biest",
"license": "MIT",
"bugs": {
"url": "https://github.com/jvanderbiest/directline-jabber/issues"
},
"homepage": "https://github.com/jvanderbiest/directline-jabber#readme",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/chai-spies": "^1.0.0",
"@types/chalk": "^2.2.0",
"@types/mocha": "^5.2.6",
"@types/npmlog": "^4.1.1",
"@types/sinon": "^7.0.13",
"@types/node": "^12.7.3",
"@types/request": "^2.48.2",
"@types/request-promise": "^4.1.44",
"chai": "^4.2.0",
"chai-spies": "^1.0.0",
"coveralls": "^3.0.3",
"istanbul": "^0.4.5",
"mocha": "^6.2.0",
"nock": "^10.0.6",
"nyc": "^14.1.1",
"proxyquire": "^2.1.0",
"sinon": "^7.4.2",
"source-map-support": "^0.5.12",
"ts-node": "^8.3.0",
"ts-node-dev": "^1.0.0-pre.42",
"typescript": "^3.6.2",
"reflect-metadata": "^0.1.13"
},
"dependencies": {
"chalk": "^2.4.2",
"commander": "^3.0.1",
"fast-deep-equal": "^3.0.0-beta.1",
"npmlog": "^4.1.2",
"request": "^2.88.0",
"request-promise": "^4.2.4"
}
}