This repository was archived by the owner on Feb 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.35 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.35 KB
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
{
"name": "@retaildevcrews/adaptive-card-transformer",
"version": "0.2.7",
"description": "Adaptive Card Transformer",
"author": "Microsoft",
"license": "MIT",
"main": "./lib/index.js",
"files": [
"lib/**/*",
"package.json",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsc --build",
"lint": "eslint --max-warnings=0 'src/**/*.ts'",
"lint:fix": "eslint --max-warnings=0 --fix 'src/**/*.ts'",
"ci": "./scripts/run-ci.sh",
"test": "jest",
"test-coverage": "jest --coverage",
"clean": "rimraf lib plugin_packages"
},
"repository": {
"type": "git",
"url": "git+https://github.com/retaildevcrews/AdaptiveCardTransformer.git"
},
"dependencies": {
"adaptive-expressions": "^4.15.0",
"adaptivecards-templating": "^2.1.0",
"app-root-path": "^3.0.0",
"debug": "^4.3.2",
"live-plugin-manager": "^0.15.1"
},
"devDependencies": {
"@types/app-root-path": "^1.2.4",
"@types/jest": "^27.0.1",
"@types/node": "^15.14.8",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-diff": "^1.0.11",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.5",
"typescript": "~4.3.2"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
}
}