forked from forcedotcom/salesforcedx-templates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.15 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
{
"name": "salesforcedx-templates-repo",
"private": true,
"description": "Salesforce CLI scaffolding commands for different types of Force.com metadata",
"author": "Salesforce",
"bugs": "https://github.com/forcedotcom/salesforcedx-templates/issues",
"devDependencies": {
"@commitlint/cli": "^16",
"@commitlint/config-conventional": "^16",
"@salesforce/dev-config": "1.4.1",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"typescript": "3.7.5",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^2.22.0",
"eslint": "^7.1.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-header": "^3.0.0",
"eslint-plugin-jsdoc": "^19.1.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"lerna": "^4",
"lint-staged": "^10.2.11",
"mkdirp": "^0.5.1",
"prettier": "1.19.1",
"pretty-quick": "^1.11.1"
},
"engines": {
"node": ">=14.17.0"
},
"homepage": "https://github.com/forcedotcom/salesforcedx-templates",
"keywords": [
"force",
"salesforce",
"sfdx",
"salesforcedx",
"sfdx-plugin"
],
"license": "BSD-3-Clause",
"repository": "forcedotcom/salesforcedx-templates",
"scripts": {
"build": "lerna run build",
"commit-init": "commitizen init cz-conventional-changelog --save-dev --save-exact --force",
"commit": "git-cz",
"manifest:generate": "lerna run manifest:generate",
"lint": "lerna run lint",
"plugin:link": "cd packages/plugin-templates && sfdx plugins:link",
"plugin:unlink": "cd packages/plugin-templates && sfdx plugins:unlink",
"postinstall": "lerna bootstrap --no-ci",
"test": "lerna run test",
"reformat": "prettier --config .prettierrc --write './*.{js,json,md}' './**/*.{ts,json,md}'"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"./{src,test}/**/*.{ts,js}": [
"eslint -c .eslintrc.json --fix"
]
},
"volta": {
"node": "12.4.0",
"yarn": "1.22.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}