-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
70 lines (70 loc) · 2.02 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
{
"name": "@venkat.polisetti/crm-sfdx-plugin",
"description": "Sfdx CLI plugin for automating mundane tasks such as setting FLS etc.,",
"version": "2.0.9",
"author": "Venkat Polisetti",
"bugs": "https://github.com/venkatpolisetti/crm-sfdx-plugin/issues",
"dependencies": {
"@oclif/command": "^1.5.6",
"@oclif/config": "^1.9.0",
"@oclif/errors": "^1.2.2",
"@salesforce/command": "0.1.6",
"@types/xml2js": "^0.4.3",
"csvtojson": "^2.0.8",
"replace-x": "^1.5.0",
"tslib": "1"
},
"devDependencies": {
"@oclif/dev-cli": "^1.19.4",
"@oclif/plugin-help": "1",
"@oclif/test": "^1.2.2",
"@salesforce/dev-config": "1.1.0",
"@types/chai": "^4.1.7",
"@types/jsforce": "1.8.13",
"@types/mocha": "5",
"@types/node": "^10.12.8",
"chai": "^4",
"globby": "8",
"mocha": "^5",
"nyc": "^12",
"rimraf": "^2.6.2",
"sinon": "5",
"ts-node": "6",
"typescript": "2.9"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/lib",
"/messages",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/venkatpolisetti/crm-sfdx-plugin",
"keywords": [
"sfdx-plugin"
],
"license": "MIT",
"oclif": {
"commands": "./lib/commands",
"topics": {
"crm": {
"description": "Commands to update profiles."
}
},
"bin": "sfdx",
"devPlugins": [
"@oclif/plugin-help"
]
},
"repository": "https://github.com/venkatpolisetti/crm-sfdx-plugin",
"scripts": {
"postpack": "rimraf oclif.manifest.json npm-shrinkwrap.json",
"posttest": "tsc -p test --noEmit && tslint -p test -t stylish",
"prepack": "rimraf lib && tsc && oclif-dev manifest && oclif-dev readme && node slash2ForwardSlash.js README.md && npm shrinkwrap",
"prepare": "rimraf lib && tsc && oclif-dev manifest && oclif-dev readme && node slash2ForwardSlash.js README.md && npm shrinkwrap",
"test": "nyc mocha --forbid-only \"test/**/*.test.ts\"",
"version": "oclif-dev readme && git add README.md"
}
}