-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·67 lines (66 loc) · 1.94 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
{
"name": "sfdx-djc-plugin",
"description": "Testing",
"version": "0.0.32",
"author": "Dave Carroll @dcarroll",
"bugs": "https://github.com/dcarroll/datatree/issues",
"dependencies": {
"@types/fs-extra": "^5.0.4",
"@oclif/command": "^1.8.0",
"@oclif/config": "^1.17.0",
"@oclif/errors": "^1.3.5",
"@salesforce/command": "^5.3.9",
"@salesforce/core": "^4.3.1",
"tslib": "^2.3.0"
},
"devDependencies": {
"@oclif/dev-cli": "^1.26.0",
"@oclif/plugin-help": "^3.2.2",
"@salesforce/dev-config": "2.1.2",
"@types/jest": "^27.0.2",
"@types/jsforce": "^1.9.35",
"@types/node": "^16.4.6",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"del-cli": "^4.0.1",
"eslint": "^7.32.0",
"jest": "^27.2.4",
"ts-jest": "^27.0.5",
"typescript": "^4.4.3"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/lib",
"/messages",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/dcarroll/datatree",
"keywords": [
"sfdx-plugin"
],
"license": "MIT",
"oclif": {
"commands": "./lib/commands",
"topics": {
"tohoom:data:export": {
"description": "export data based on list of SObjects"
}
},
"devPlugins": [
"@oclif/plugin-help"
]
},
"repository": "dcarroll/datatree",
"scripts": {
"build": "tsc",
"lint": "eslint . --ext .ts,.tsx --format stylish",
"lint:fix": "eslint . --ext .ts,.tsx --format stylish --fix",
"postpack": "del-cli -f oclif.manifest.json",
"prepack": "del-cli -f lib && tsc -b && oclif-dev manifest && oclif-dev readme",
"test": "jest",
"version": "oclif-dev readme && git add README.md"
}
}