-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
54 lines (54 loc) · 1.37 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
{
"name": "botbuilder-redis-storage",
"version": "1.1.0",
"description": "Redis storage for Microsoft BotBuilder",
"main": "lib/index.js",
"repository": "https://github.com/suttna/botbuilder-redis-storage",
"author": "Martin Fernandez <fmartin91@gmail.com>",
"license": "MIT",
"scripts": {
"build": "tsc",
"prepublish": "yarn build",
"test": "jest --config jest.json",
"posttest": "codecov -f coverage/*.json",
"lint": "tslint 'src/**/*.ts' '__tests__/**/*.ts'",
"lint:fix": "tslint 'src/**/*.ts' '__tests__/**/*.ts' --fix",
"ci": "yarn lint && yarn build && yarn test",
"prepare": "yarn build",
"preversion": "yarn test",
"changelog": "bundle exec github_changelog_generator"
},
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
]
},
"devDependencies": {
"@types/jest": "22.2.3",
"@types/redis": "2.8.6",
"codecov": "3.0.1",
"jest": "23.0.0",
"standard": "10.0.3",
"ts-jest": "22.4.4",
"tslint": "5.9.1",
"typescript": "3.0.3"
},
"keywords": [
"bot",
"node",
"botframework",
"botbuilder",
"redis"
],
"dependencies": {
"botbuilder": "^3.8.0",
"redis": "^2.6.0"
}
}