forked from microsoftly/BotTester
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.52 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
94
{
"name": "bot-tester",
"version": "3.0.2",
"description": "Easily test bots made with the bot builder framework",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Matt Schwartz <[email protected]>",
"license": "MIT",
"keywords": [
"botbuilder",
"test",
"tdd",
"bdd",
"chai",
"mocha",
"dialog",
"mock",
"bot",
"chatbot",
"automation",
"unit test",
"integration test",
"component test",
"integration"
],
"bugs": {
"url": "https://github.com/microsoftly/BotTester/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/microsoftly/BotTester.git"
},
"scripts": {
"buildSrc": "tsc -p src/tsconfig.json",
"prepublishOnly": "npm run cleanBuild && npm run test && npm run buildTypeDocs",
"clean": "rm -rf ./dist",
"build": "tsc",
"lint": "tslint src/**/*.ts && tslint test/BotTestFailure.spec.ts",
"lint:fix": "tslint 'src/**/*.ts' --fix",
"cleanBuild": "npm run clean && npm run build",
"watch": "tsc -w",
"test": "node_modules/mocha/bin/_mocha --require node_modules/ts-node/register test/*.spec.ts",
"buildTypeDocs": "yarn cleanBuild && typedoc --excludeNotExported --out docs --hideGenerator src/BotTester.ts --module commonjs --gaID UA-105358964-1 --readme none && touch docs/.nojekyll",
"ci": "npm run lint && npm run test",
"coverage": "npm run coverageTests && nyc report --reporter=text-lcov | node_modules/.bin/coveralls",
"coverageTests": "nyc node_modules/.bin/_mocha --require source-map-support/register test/**/*.spec.ts"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"**/*.d.ts",
"**/*.js",
"**/*.map"
],
"reporter": [
"html"
],
"all": true
},
"dependencies": {
"bluebird": "^3.5.0",
"botbuilder": "^3.8.4",
"chai": "^4.0.2",
"chai-subset": "^1.6.0",
"colors": "^1.1.2",
"global": "^4.3.2"
},
"devDependencies": {
"@types/app-root-path": "^1.2.4",
"@types/bluebird": "^3.5.8",
"@types/chai": "^4.0.1",
"@types/chai-as-promised": "^0.0.31",
"@types/chai-subset": "^1.3.1",
"@types/mocha": "^2.2.41",
"@types/node": "^8.0.26",
"chai-as-promised": "^7.1.1",
"coveralls": "^2.13.1",
"istanbul": "^0.4.5",
"mocha": "^3.4.2",
"nyc": "^11.2.1",
"source-map-support": "^0.4.17",
"ts-node": "^3.1.0",
"typedoc": "^0.8.0",
"tslint": "^5.7.0",
"typescript": "^2.4.1"
},
"files": [
"dist",
"src"
]
}