forked from gudwin/botbuilder-unit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.47 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
{
"name": "botbuilder-unit",
"version": "0.7.1",
"description": "Unit tests for chatbot dialogs",
"main": "botbuilder-unit.js",
"dependencies": {
"async": "^1.5.2",
"botbuilder": "^3.8.2",
"colors": "^1.1.2"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.1",
"coveralls": "^3.0.0",
"gulp": "^3.9.1",
"gulp-babel": "^7.0.0",
"gulp-coverage": "^0.3.38",
"gulp-jasmine": "^2.4.2",
"gulp-tap": "^1.0.1",
"gulp-watch": "^4.3.11",
"jasmine": "^2.5.3",
"jasmine-terminal-reporter": "^1.0.3",
"jshint": "*",
"nyc": "^11.4.1",
"tap": "^11.0.0"
},
"scripts": {
"test": "nyc node ./testRunner.js ",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"test_and_cover": "nyc npm test"
},
"bugs": {
"url": "https://github.com/gudwin/botbuilder-unit/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/gudwin/botbuilder-unit.git"
},
"nyc": {
"include": [
"botbuilder-unit.js",
"src/**/*.js"
],
"exclude": [
"spec/**/*.js",
"example/**/*.js"
],
"reporter": [
"lcov",
"html"
],
"cache": false,
"all": false,
"report-dir": "./build"
},
"keywords": [
"botbuilder",
"tdd",
"bdd",
"bot-framework",
"test-framework",
"chatbot",
"chatbot-framework"
],
"author": "Dmitry Shevchenko",
"license": "GNU LGPL 3.0"
}