-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.61 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
{
"name": "@thebrettbarlow/forcelandia-sfdx-plugin",
"description": "Salesforce Command Line Training Workshop at Forcelandia",
"version": "1.0.0",
"author": "Brett Barlow @thebrettbarlow",
"dependencies": {
"@oclif/command": "^1.5.12",
"@oclif/config": "^1.12.12",
"@oclif/errors": "^1.2.2",
"@oclif/parser": "^3.7.2",
"@salesforce/command": "^1.5.0",
"csv-parse": "^4.3.4",
"delay": "^4.2.0",
"json2csv": "^4.3.3",
"node": "^12.3.1",
"prompts": "^2.1.0",
"tslib": "1"
},
"devDependencies": {
"@oclif/dev-cli": "^1",
"@oclif/plugin-help": "^2",
"@oclif/test": "^1",
"@salesforce/dev-config": "^1.1.4",
"@types/chai": "^4",
"@types/fs-extra": "^7.0.0",
"@types/jest": "^24.0.13",
"@types/mocha": "^5",
"@types/node": "^10",
"chai": "^4",
"globby": "^8",
"jest": "^24.8.0",
"mocha": "^5",
"nyc": "^13",
"sinon": "5",
"ts-jest": "^24.0.2",
"ts-node": "^7",
"typescript": "^3.0"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
".oclif.manifest.json",
"/lib",
"/messages"
],
"keywords": [
"sfdx-plugin"
],
"license": "MIT",
"oclif": {
"commands": "./lib/commands",
"topics": {
"fl": {
"description": "command line utilities for salesforce"
},
"fl:data": {
"description": "commands for all the datas"
},
"fl:recordtype": {
"description": "commands related to record types"
},
"fl:user": {
"description": "commands related to users"
}
},
"bin": "sfdx",
"devPlugins": [
"@oclif/plugin-help"
]
},
"scripts": {
"build": "rm -rf lib && tsc",
"clean": "rm -f .oclif.manifest.json",
"lint": "tsc -p test --noEmit && tslint -p test -t stylish",
"postpublish": "yarn run clean; git push; git push --tags",
"prepare": "yarn run build && oclif-dev manifest",
"prepublishOnly": "yarn run build && oclif-dev manifest",
"preversion": "yarn run clean",
"test": "yarn run prepare && jest --runInBand",
"test:parallel": "yarn run prepare && jest",
"test:watch": "yarn run prepare && jest --watch --runInBand",
"version": "oclif-dev readme && git add README.md"
},
"main": "index.js",
"directories": {
"doc": "docs",
"lib": "lib",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thebrettbarlow/forcelandia-sfdx-plugin.git"
},
"bugs": {
"url": "https://github.com/thebrettbarlow/forcelandia-sfdx-plugin/issues"
},
"homepage": "https://github.com/thebrettbarlow/forcelandia-sfdx-plugin#readme"
}