This repository has been archived by the owner on Mar 11, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 1.88 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": "adaptive-cards-botbuilder",
"version": "0.1.0",
"description": "Generate Adaptive Cards on the fly inside your Bot Builder chatbot (without any JSON!)",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"keywords": [
"adaptive",
"cards",
"adaptivecards",
"botbuilder",
"microsoft",
"chatbot"
],
"scripts": {
"compile": "tsc -p tsconfig.json",
"test": "jest --testMatch '<rootDir>/tests/*.test.+(ts|tsx)'",
"test:ci": "npm run test-- --coverage --ci",
"lint": "eslint --format=codeframe 'src/**/*.ts'"
},
"prepublish": "npm run compile",
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm test"
}
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"collectCoverageFrom": [
"**/src/**/*.{js,jsx,ts,tsx}"
],
"moduleFileExtensions": [
"js",
"jsx",
"json",
"ts",
"tsx"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.json"
}
},
"testPathIgnorePatterns": [
"/lib/",
"/node_modules/"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/caian-org/adaptive-cards-botbuilder"
},
"author": "Caian R. Ertl <hi@caian.org>",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/caian-org/adaptive-cards-botbuilder/issues"
},
"homepage": "https://github.com/caian-org/adaptive-cards-botbuilder#readme",
"devDependencies": {
"@types/jest": "^24.0.15",
"@types/node": "^12.6.8",
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@typescript-eslint/parser": "^1.13.0",
"eslint": "^6.1.0",
"husky": "^3.0.5",
"jest": "^24.8.0",
"ts-jest": "^24.0.2",
"ts-node": "^8.3.0",
"typescript": "^3.5.3"
},
"dependencies": {
"botbuilder": "^4.5.3"
}
}