-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
91 lines (91 loc) · 3.06 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
{
"name": "sfdx-git-packager",
"description": "Generates a package.xml for difference between two branches",
"version": "0.3.4",
"author": "Charlie Jonas @ChuckJonas",
"bugs": "https://github.com/callawaycloud/sfdx-git-packager/issues",
"dependencies": {
"@oclif/core": "^1",
"@salesforce/command": "^5",
"@salesforce/core": "^3",
"diff": "^4.0.1",
"ignore": "^5.1.4",
"istextorbinary": "^5.8.0",
"mkdirp": "^2.1.3",
"tmp": "^0.1.0",
"tslib": "^2",
"xml-js": "^1.6.11"
},
"devDependencies": {
"@oclif/plugin-help": "^5.2.5",
"@types/diff": "^4.0.2",
"@types/istextorbinary": "^2.3.0",
"@types/node": "^10",
"@types/tmp": "^0.1.0",
"@types/xml-js": "^1.0.0",
"@types/xml2js": "^0.4.5",
"dir-compare": "^4.0.0",
"globby": "^11",
"@oclif/test": "^2",
"@salesforce/ts-sinon": "^1",
"@types/chai": "^4",
"@types/mocha": "^8",
"@typescript-eslint/eslint-plugin": "^4",
"@typescript-eslint/parser": "^4",
"chai": "^4",
"eslint": "^7",
"eslint-config-prettier": "^8",
"eslint-plugin-header": "^3",
"eslint-plugin-import": "^2",
"eslint-plugin-jsdoc": "^35",
"eslint-plugin-prettier": "^3",
"eslint-plugin-typescript": "^0",
"mocha": "^9",
"nyc": "^15",
"oclif": "^3",
"prettier": "^2",
"sinon": "10.0.0",
"ts-node": "^10",
"typescript": "4"
},
"engines": {
"node": ">=14.0.0"
},
"files": [
"/lib",
"/messages",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/callawaycloud/sfdx-git-packager",
"keywords": [
"sfdx-plugin"
],
"license": "MIT",
"oclif": {
"commands": "./lib/commands",
"bin": "sfdx",
"topics": {
"git": {
"description": "Generates a package.xml for difference between two branches"
}
},
"devPlugins": [
"@oclif/plugin-help"
]
},
"repository": "https://github.com/callawaycloud/sfdx-git-packager.git",
"scripts": {
"build": "tsc -p .",
"lint": "eslint src/**/*.ts test/**/*.ts",
"postpack": "rm -f oclif.manifest.json",
"prepack": "rm -rf lib && tsc -b && oclif manifest && oclif readme",
"test": "nyc --extension .ts mocha --timeout 99999 --forbid-only \"test/{*.test.ts,!(integration)/**/*.test.ts}\"",
"test:integration": "nyc --extension .ts --require ts-node/register mocha --timeout 99999 --forbid-only \"test/integration/**/*.test.ts\"",
"test:generate:output": "npm run gen",
"version": "oclif readme && git add README.md",
"tgp": "mv test/integration/project/.git test/integration/project/.notgit",
"tgu": "mv test/integration/project/.notgit test/integration/project/.git",
"gen": "ts-node test/integration/genIntegrationTestOutput.ts"
}
}