forked from scolladon/sfdx-git-delta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 3.59 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
{
"name": "sfdx-git-delta",
"version": "5.10.0",
"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.20",
"@oclif/config": "^1.18.6",
"@oclif/errors": "^1.3.6",
"@salesforce/command": "^5.2.37",
"@salesforce/core": "^3.32.12",
"fast-xml-parser": "^4.0.12",
"fs-extra": "^11.1.0",
"ignore": "^5.2.4",
"micromatch": "^4.0.5",
"tslib": "^2.4.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 src/",
"lint:fix": "eslint --fix src/",
"test": "jest",
"test:build:local": "rm -rf node_modules && yarn && yarn pack && yarn test",
"test:clear:cache": "jest --clearCache",
"test:coverage": "jest --coverage",
"test:debug": "node --inspect node_modules/.bin/jest",
"test:debug:break": "node --inspect-brk node_modules/.bin/jest",
"test:watch": "jest --watch",
"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": "filename=`ls src/metadata/v*.json | tail -1` && version=${filename//[!0-9]/} && ((version++)) && targetname=\"src/metadata/v${version}.json\" && \\cp $filename $targetname && yarn pack",
"upgrade:dependencies": "yarn yarn-upgrade-all"
},
"devDependencies": {
"@commitlint/cli": "^17.4.0",
"@commitlint/config-angular": "^17.4.0",
"@commitlint/prompt-cli": "^17.4.0",
"@oclif/dev-cli": "^1.26.10",
"@oclif/plugin-help": "^5.1.22",
"@oclif/test": "^2.2.19",
"@salesforce/dev-config": "^3.1.0",
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"conventional-github-releaser": "^3.1.5",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-salesforce-typescript": "^1.1.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^39.6.4",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "^29.3.1",
"lint-staged": "^13.1.0",
"nyc": "^15.1.0",
"prettier": "^2.8.1",
"prettier-eslint": "^15.0.1",
"standard-version": "^9.5.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.4",
"yarn-upgrade-all": "^0.7.1"
},
"oclif": {
"commands": "./lib/commands",
"bin": "sfdx",
"devPlugins": [
"@oclif/plugin-help"
]
},
"publishConfig": {
"access": "public"
}
}