-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.6 KB
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
{
"name": "plugin-datakit-devops",
"version": "0.1.0",
"description": "Salesforce CLI plugin for DataKit operations",
"author": "Salesforce",
"license": "Apache-2.0",
"type": "module",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"/lib",
"/messages",
"/oclif.manifest.json"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"clean": "rm -rf lib oclif.manifest.json",
"compile": "tsc -p tsconfig.json",
"prepack": "npm run build && oclif manifest",
"postpack": "rm -f oclif.manifest.json",
"lint": "eslint src --ext .ts",
"test": "mocha"
},
"ts-node": {
"project": "tsconfig.test.json",
"esm": true
},
"dependencies": {
"@oclif/core": "^4",
"@oclif/multi-stage-output": "^1.0.0",
"@salesforce/core": "^8",
"@salesforce/sf-plugins-core": "^11"
},
"devDependencies": {
"@salesforce/cli-plugins-testkit": "^5",
"@types/chai": "^5.2.3",
"@types/mocha": "^10.0.10",
"@types/node": "^18",
"@types/sinon": "^22.0.0",
"@types/xml2js": "^0.4.14",
"chai": "^6.2.2",
"mocha": "^12.0.0",
"oclif": "^5",
"sinon": "^22.1.0",
"ts-node": "^10.9.2",
"typescript": "^5"
},
"oclif": {
"commands": "./lib/commands",
"bin": "sf",
"topicSeparator": " ",
"topics": {
"datakit": {
"description": "Commands for DataKit operations"
},
"datakit devops deploy": {
"description": "Deploy DataKit objects and track deployment status using the Data 360 Connect API"
}
},
"flexibleTaxonomy": true
},
"engines": {
"node": ">=18.0.0"
}
}