-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
88 lines (88 loc) · 3.47 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
80
81
82
83
84
85
86
87
88
{
"name": "mcdev-copado",
"private": true,
"version": "1.3.0",
"description": "Salesforce code & Copado functions that bring Accenture SFMC DevTools functionality to 'Copado Deployer' v20",
"author": "Accenture: joern.berkefeld, daniel.ventura, uwe.voellger, Copado: nahuel.rabe, david.venegas",
"license": "MIT",
"directories": {
"bin": "copado-function/dist"
},
"peerDependencies": {
"mcdev": ">=4.1.12"
},
"copadoDependencies": {
"Copado Deployer": "20.1"
},
"engines": {
"node": ">=14.16"
},
"repository": {
"type": "git",
"url": "https://github.com/Accenture/sfmc-devtools-copado.git"
},
"homepage": "https://github.com/Accenture/sfmc-devtools-copado#readme",
"bugs": {
"url": "https://github.com/Accenture/sfmc-devtools-copado/issues",
"email": "[email protected]"
},
"funding": {
"type": "corporate",
"url": "https://github.com/Accenture/sfmc-devtools-copado"
},
"scripts": {
"lint": "eslint **/{aura,lwc}/**",
"test": "npm run test:unit",
"test:unit": "sfdx-lwc-jest -- --passWithNoTests",
"test:unit:watch": "sfdx-lwc-jest --watch",
"test:unit:debug": "sfdx-lwc-jest --debug",
"test:unit:coverage": "sfdx-lwc-jest --coverage",
"prettier": "prettier --write \"**/*.{cls,cmp,component,css,html,js,json,md,page,trigger,xml,yaml,yml}\"",
"prettier:verify": "prettier --list-different \"**/*.{cls,cmp,component,css,html,js,json,md,page,trigger,xml,yaml,yml}\"",
"postinstall": "husky install",
"precommit": "lint-staged",
"lint-cf": "eslint copado-function/app/**/*.js",
"docs": "jsdoc2md --files copado-function/app/*.fn.js copado-function/app/common/**/*.js copado-function/app/types/**/*.js > copado-function/docs/documentation.md",
"build": "node ./copado-function/app/esbuild.js",
"build:watch": "node ./copado-function/app/esbuild.js --watch",
"build:docs": "run-p build docs",
"version:major": "node ./copado-function/app/npmVersion.js major",
"version:minor": "node ./copado-function/app/npmVersion.js minor",
"version:patch": "node ./copado-function/app/npmVersion.js patch"
},
"devDependencies": {
"@lwc/eslint-plugin-lwc": "^1.5.0",
"@prettier/plugin-xml": "^2.2.0",
"@salesforce/eslint-config-lwc": "^3.3.3",
"@salesforce/eslint-plugin-aura": "^2.1.0",
"@salesforce/eslint-plugin-lightning": "^1.0.0",
"@salesforce/sfdx-lwc-jest": "^3.0.0",
"esbuild": "0.19.4",
"esbuild-plugin-version-injector": "1.0.2",
"eslint": "8.29.0",
"eslint-config-prettier": "8.5.0",
"eslint-config-ssjs": "1.1.11",
"eslint-plugin-jsdoc": "39.6.4",
"eslint-plugin-mocha": "10.1.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-unicorn": "44.0.2",
"husky": "^8.0.1",
"jsdoc-to-markdown": "8.0.0",
"lint-staged": "^13.1.0",
"npm-run-all": "4.1.5",
"prettier": "2.8.8",
"prettier-eslint": "15.0.1",
"prettier-plugin-apex": "^1.13.0"
},
"lint-staged": {
"force-app/**/*.{cls,cmp,component,css,html,js,json,md,page,trigger,xml,yaml,yml}": [
"prettier --write"
],
"copado-function/**/*.{js,json,md}": [
"eslint --fix"
],
"**/{aura,lwc}/**": [
"eslint"
]
}
}