forked from scolladon/sfdx-git-delta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
114 lines (114 loc) · 3.63 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "sfdx-git-delta",
"version": "5.1.2",
"description": "Generate the sfdx content in source format and destructive change from two git commits",
"keyword": [
"salesforce",
"package",
"git",
"sfdx",
"sfdx-plugin"
],
"engines": {
"node": ">=14.6.0"
},
"files": [
"/bin",
"/lib",
"/messages",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"main": "lib/main.js",
"repository": {
"type": "git",
"url": "git+https://github.com/scolladon/sfdx-git-delta.git"
},
"author": "Sebastien Colladon <[email protected]>",
"dependencies": {
"@oclif/command": "^1.8.15",
"@oclif/config": "^1.18.2",
"@oclif/errors": "^1.3.5",
"@salesforce/command": "^5.0.1",
"@salesforce/core": "^2.28.1",
"fast-xml-parser": "^4",
"fs-extra": "^10.0.0",
"ignore": "^5.1.8",
"micromatch": "^4.0.4",
"tslib": "^2.3.1",
"xmlbuilder2": "^3.0.2"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/scolladon/sfdx-git-delta/issues"
},
"homepage": "https://github.com/scolladon/sfdx-git-delta#readme",
"scripts": {
"analysis": "codeclimate analyze",
"audit:fix": "npm i --package-lock-only && npm audit fix && rm yarn.lock && yarn import && rm package-lock.json",
"commit": "commit",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "jest",
"test:clear:cache": "jest --clearCache",
"test:coverage": "jest --coverage --runInBand",
"test:debug": "node --inspect node_modules/.bin/jest",
"test:debug:break": "node --inspect-brk node_modules/.bin/jest",
"postpack": "rm -f oclif.manifest.json ; prettier --write README.md",
"postrelease": "yarn release:tags && yarn release:github",
"prepack": "rm -rf lib && tsc -b && oclif-dev manifest && oclif-dev readme",
"prepare": "husky install",
"release": "standard-version --no-verify --commit-all",
"release:github": "conventional-github-releaser -p angular",
"release:tags": "git push --follow-tags origin main -f --no-verify",
"increment:apiversion": "jq '.sfdc.latestApiVersion = (.sfdc.latestApiVersion|tonumber + 1 |tostring)' package.json | sponge package.json && filename=`ls src/metadata/v*.json | tail -1` && version=${filename//[!0-9]/} && ((version++)) && targetname=\"src/metadata/v${version}.json\" && \\cp $filename $targetname && yarn pack"
},
"devDependencies": {
"@commitlint/cli": "^16",
"@commitlint/config-angular": "^16",
"@commitlint/prompt-cli": "^16",
"@oclif/dev-cli": "^1.26.10",
"@oclif/plugin-help": "^5.1.10",
"@oclif/test": "^2.0.3",
"@salesforce/dev-config": "^3",
"@types/chai": "^4.2.22",
"@types/mocha": "^9.0.0",
"@types/node": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"conventional-github-releaser": "^3.1.5",
"eslint": "^8.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-salesforce-typescript": "^0.2.8",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsdoc": "^38.0.4",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.2",
"jest": "^27.2.5",
"lint-staged": "^12.1.2",
"nyc": "^15.1.0",
"prettier": "^2.4.1",
"prettier-eslint": "^13.0.0",
"standard-version": "^9.3.1",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
},
"oclif": {
"commands": "./lib/commands",
"bin": "sfdx",
"devPlugins": [
"@oclif/plugin-help"
]
},
"publishConfig": {
"access": "public"
},
"standard-version": {
"scripts": {
"postbump": "yarn pack && git add README.md"
}
},
"sfdc": {
"latestApiVersion": "54"
}
}