forked from compulim/BotFramework-MockBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.86 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
{
"name": "mockbot",
"version": "1.0.0",
"description": "",
"main": "lib/index.js",
"private": true,
"scripts": {
"build": "concurrently --names \"babel,typecheck\" \"npm run build:babel\" \"npm run build:typecheck\"",
"build:babel": "babel --extensions .js,.ts,.tsx --ignore **/*.spec.js,**/*.spec.ts,**/*.spec.tsx,**/*.test.js,**/*.test.ts,**/*.test.tsx,__test__/**/*.js,__test__/**/*.ts,__test__/**/*.tsx --out-dir lib --source-maps inline --verbose src",
"build:typecheck": "tsc",
"clean": "rimraf lib",
"postinstall": "npm run build",
"start": "concurrently --allow-restart --names \"babel,start,typecheck\" \"npm run build:babel -- --watch\" \"node-dev --no-notify --respawn .\" \"npm run build:typecheck -- --preserveWatchOutput --watch\"",
"watch": "echo Error: \"npm run watch\" has been renamed to \"npm run start\"."
},
"jest": {
"moduleFileExtensions": [
"js",
"ts"
],
"testMatch": [
"**/__tests__/**/*.[jt]s?(x)",
"**/?(*.)(spec|test).[jt]s?(x)"
],
"transform": {
"^.+\\.[jt]sx?$": "babel-jest"
}
},
"author": "Microsoft Corporation",
"license": "MIT",
"dependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"@babel/preset-typescript": "^7.1.0",
"@types/node": "^10.7.0",
"auto-reset-event": "^1.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.4.2",
"babel-polyfill": "^6.26.0",
"botbuilder": "^4.2.0",
"botbuilder-dialogs": "^4.2.0",
"concurrently": "^3.6.1",
"delay": "^4.0.1",
"dotenv": "^6.0.0",
"jest": "^23.5.0",
"node-dev": "^3.1.3",
"node-fetch": "^2.2.0",
"on-error-resume-next": "^1.1.0",
"pretty-ms": "^3.2.0",
"restify": "^7.2.1",
"rimraf": "^2.6.2",
"serve-handler": "^3.6.1",
"ts-jest": "^23.1.3",
"typescript": "^3.0.1"
}
}