-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
79 lines (79 loc) · 1.96 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
{
"name": "wolf-core",
"version": "2.5.2",
"description": "",
"main": "dist/index",
"typings": "dist/index",
"scripts": {
"build": "tsc",
"build:watch": "tsc -w",
"build:dev": "tsc --p tsconfig.example.json",
"build:dev:watch": "tsc --p tsconfig.example.json -w",
"preversion": "git-branch-is master && echo Branch In Master",
"release:patch": "npm version patch",
"release:minor": "npm version minor",
"release:major": "npm version major",
"postversion": "git push && git push --tags",
"test": "jest"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testEnvironment": "node",
"testMatch": [
"<rootDir>/src/tests/**/?(*.)(spec|test).(j|t)s?(x)",
"<rootDir>/examples/**/?(*.)(spec|test).(j|t)s?(x)"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"keywords": [
"botbuilder",
"Microsoft Bot Framework"
],
"homepage": "https://github.com/wolf-packs/wolf-core",
"repository": {
"type": "git",
"url": "git://github.com/wolf-packs/wolf-core.git"
},
"bugs": {
"url": "https://github.com/wolf-packs/wolf-core/issues"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@types/jest": "^22.2.3",
"botbuilder": "^4.0.0-preview1.2",
"botbuilder-node": "^4.0.0-m1.10",
"botbuilder-services": "^4.0.0-m1.10",
"botbuilder-wolf-rive": "^1.1.2",
"bravey": "^0.1.5",
"dotenv": "^6.0.0",
"git-branch-is": "^2.0.0",
"jest": "^22.4.4",
"restify": "^6.3.4",
"ts-jest": "^22.4.6",
"typescript": "^3.0.0"
},
"dependencies": {
"botbuilder-redux": "^2.1.0",
"debug": "^3.1.0",
"immutable": "^3.8.2",
"lodash.difference": "^4.5.0",
"lodash.get": "^4.4.2",
"lodash.set": "^4.3.2",
"redux": "^4.0.0",
"reselect": "^3.0.1"
},
"peerDependencies": {
"remote-redux-devtools": "^0.5.13",
"remotedev-server": "^0.2.5"
}
}