forked from forcedotcom/sfdx-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 882 Bytes
/
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
{
"name": "sfdx-core-examples",
"version": "0.0.1",
"description": "Examples using the SFDX Core libraries to interact with SFDX projects, orgs, and APIs.",
"main": "index.js",
"license": "BSD-3-Clause",
"scripts": {
"test": "mocha test/unit/**/*.ts"
},
"keywords": [
"sfdx",
"sf",
"sfdx-core",
"Salesforce DX",
"Salesforce CLI"
],
"dependencies": {
"@salesforce/core": "^6",
"chalk": "^4",
"inquirer": "^8",
"lodash": "^4.17.21",
"strip-ansi": "^6"
},
"devDependencies": {
"@salesforce/dev-config": "^3",
"@salesforce/ts-sinon": "^1",
"@salesforce/ts-types": "^1",
"@types/inquirer": "^8.2.1",
"@types/lodash": "^4.14.182",
"@types/mocha": "^9.1.1",
"@types/node": "^17",
"chai": "^4.1.2",
"mocha": "^10",
"sinon": "^14",
"ts-node": "^10",
"typescript": "^4"
}
}