forked from scolladon/sfdx-git-delta
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
109 lines (109 loc) · 2.73 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
{
"name": "sfdx-git-delta",
"version": "4.2.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": "src/main.js",
"bin": {
"sgd": "./bin/cli"
},
"repository": {
"type": "git",
"url": "git+https://github.com/scolladon/sfdx-git-delta.git"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && yarn analysis",
"pre-push": "yarn test:coverage"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
],
".js": [
"yarn lint:fix",
"yarn lint"
]
},
"author": "Sebastien Colladon <[email protected]>",
"dependencies": {
"@oclif/command": "^1",
"@oclif/config": "^1",
"@oclif/errors": "^1",
"@salesforce/command": "^2",
"@salesforce/core": "^2",
"commander": "^2.20.0",
"fast-xml-parser": "^3.17.4",
"fs-extra": "^9.0.1",
"git-state": "^4.1.0",
"ignore": "^5.1.8",
"tslib": "^1",
"xmlbuilder": "^15.1.1"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/scolladon/sfdx-git-delta/issues"
},
"homepage": "https://github.com/scolladon/sfdx-git-delta#readme",
"scripts": {
"test": "jest --runInBand",
"test:debug": "node --inspect node_modules/.bin/jest --runInBand",
"test:coverage": "jest --coverage --runInBand",
"test:clear:cache": "jest --clearCache",
"lint:fix": "eslint --fix . ; tslint --fix --project . --config tslint.json --format stylish",
"lint": "eslint . ; tslint --project . --config tslint.json --format stylish",
"analysis": "codeclimate analyze",
"postpack": "rm -f oclif.manifest.json",
"prepack": "rm -rf lib && tsc -b && oclif-dev manifest && oclif-dev readme",
"version": "oclif-dev readme && git add README.md"
},
"devDependencies": {
"@oclif/dev-cli": "^1",
"@oclif/plugin-help": "^2",
"@oclif/test": "^1",
"@salesforce/dev-config": "1.4.1",
"@types/chai": "^4",
"@types/mocha": "^5",
"@types/node": "^10",
"eslint": "^7.10.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-prettier": "^3.1.4",
"globby": "^8",
"husky": "^4.3.0",
"jest": "^26.4.2",
"lint-staged": "^10.4.0",
"nyc": "^14",
"prettier": "^2.1.2",
"prettier-eslint": "^11.0.0",
"ts-node": "^8",
"typescript": "^4.0.5"
},
"oclif": {
"commands": "./lib/commands",
"bin": "sfdx",
"devPlugins": [
"@oclif/plugin-help"
]
},
"publishConfig": {
"access": "public"
}
}