This repository was archived by the owner on Oct 30, 2021. 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
46 lines (46 loc) · 1.36 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.36 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
{
"name": "@mdapi-issues/deploy-installed-quickaction",
"description": "Minimal working example to demonstrate a bug in deploy and updateMetadata where installed QuickActions cannot be updated",
"private": true,
"version": "0.0.0-development",
"author": "Matthias Rolke @amtrack",
"bugs": "https://github.com/mdapi-issues/deploy-installed-quickaction/issues",
"dependencies": {},
"devDependencies": {
"@types/chai": "4.2.15",
"@types/mocha": "8.2.2",
"@typescript-eslint/eslint-plugin": "4.15.1",
"@typescript-eslint/parser": "4.15.1",
"chai": "4.3.0",
"eslint": "7.20.0",
"eslint-config-prettier": "8.2.0",
"mocha": "8.3.2",
"prettier": "2.2.1",
"sfdx-cli": "7.124.0",
"ts-node": "9.1.1",
"typescript": "4.2.4"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/lib"
],
"homepage": "https://github.com/mdapi-issues/deploy-installed-quickaction",
"keywords": [
"salesforce",
"mdapi-issue",
"minimum-working-example",
"MWE"
],
"license": "MIT",
"main": "",
"repository": "mdapi-issues/deploy-installed-quickaction",
"scripts": {
"develop": "bash scripts/develop.sh",
"format": "prettier --write 'src/**/*.ts' 'test/**/*.ts'",
"lint": "eslint 'src/**/*.ts' 'test/**/*.ts'",
"posttest": "yarn lint",
"test:e2e": "mocha --forbid-only \"test/**/*.e2e-spec.ts\""
}
}