This repository has been archived by the owner on Jan 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.23 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
{
"name": "sfdx-collate",
"version": "0.5.3",
"author": "Mike Simpson @mikesimps",
"bugs": "https://github.com/mikesimps/sfdx-collate/issues",
"dependencies": {
"@oclif/command": "1",
"@oclif/config": "1",
"@oclif/errors": "1",
"@salesforce/command": "^2.0.0",
"@salesforce/ts-types": "^1.1.4",
"cerialize": "^0.1.18",
"csvjson": "^5.1.0",
"del": "^3.0.0",
"flat": "^4.1.0",
"node-stream-zip": "^1.8.2",
"prepack": "^0.2.54",
"snyk": "^1.192.3",
"tslib": "1",
"xml-js": "^1",
"xml2js": "^0.4.19"
},
"devDependencies": {
"@oclif/dev-cli": "1",
"@oclif/plugin-help": "1",
"@oclif/test": "^1",
"@salesforce/dev-config": "1",
"@types/chai": "4",
"@types/del": "^3.0.1",
"@types/flat": "0.0.28",
"@types/fs-extra": "^5.0.4",
"@types/jsonfile": "^4.0.1",
"@types/mocha": "5",
"@types/node": "10",
"@types/xml2js": "^0.4.3",
"chai": "^4",
"globby": "8",
"mocha": "^5",
"nyc": "^12",
"sinon": "5",
"ts-node": "6",
"typescript": "3"
},
"engines": {
"node": ">=9"
},
"files": [
"/lib",
"/messages",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/mikesimps/sfdx-collate",
"keywords": [
"sfdx-plugin",
"salesforce",
"sfdc",
"sfdx",
"typescript",
"oclif"
],
"license": "MIT",
"oclif": {
"commands": "./lib/commands",
"topics": {
"compare": {
"description": "Commands to compare and create metadata files."
}
},
"devPlugins": [
"@oclif/plugin-help"
]
},
"repository": "https://github.com/mikesimps/sfdx-collate",
"scripts": {
"postpack": "rm -f oclif.manifest.json npm-shrinkwrap.json",
"posttest": "tsc -p test --noEmit && tslint -p test -t stylish",
"prepack": "rm -rf lib && tsc && oclif-dev manifest && oclif-dev readme",
"prepare": "yarn run snyk-protect; rm -rf lib && tsc && oclif-dev manifest && oclif-dev readme",
"test": "snyk test && nyc mocha --forbid-only \"test/**/*.test.ts\"",
"version": "oclif-dev readme && git add README.md",
"snyk-protect": "snyk protect",
"prepublishOnly": "npm run snyk-protect"
},
"snyk": true,
"main": "index.js"
}