-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.38 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
{
"name": "sfdcm",
"description": "Merge salesforce metadata with ease",
"version": "1.0.0",
"author": "Bryan Leboff @leboff",
"bin": {
"sfdcm": "./bin/run"
},
"bugs": "https://github.com/leboff/sfdc-merge-driver/issues",
"dependencies": {
"@oclif/command": "^1",
"@oclif/config": "^1",
"@oclif/plugin-help": "^2",
"@types/fs-extra": "5.0.4",
"@types/lodash": "^4.14.109",
"@types/xml2js": "^0.4.2",
"fs-extra": "^5.0.0",
"lodash": "^4.17.10",
"serializer.ts": "0.0.12",
"tslib": "^1",
"xml2js": "^0.4.19"
},
"devDependencies": {
"@oclif/test": "^1",
"@oclif/tslint": "^1",
"@types/chai": "^4",
"@types/mocha": "^5",
"@types/node": "^10",
"chai": "^4",
"mocha": "^5",
"nyc": "^11",
"ts-node": "^6",
"tslint": "^5",
"typescript": "^2.9"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/lib"
],
"homepage": "https://github.com/leboff/sfdc-merge-driver",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"bin": "sfdcm",
"macos": {
"identifier": "com.leboff.sfdcm"
}
},
"repository": "leboff/sfdc-merge-driver",
"scripts": {
"prepack": "rm -rf lib && tsc",
"generate-types": "node wsdl/generate.js",
"test": "nyc mocha --forbid-only \"test/**/*.test.ts\""
},
"types": "lib/index.d.ts"
}