forked from salesforcecli/plugin-apex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
118 lines (118 loc) · 3.25 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "@salesforce/plugin-apex",
"description": "Apex commands",
"version": "1.3.0",
"author": "Salesforce",
"bugs": "https://github.com/forcedotcom/salesforcedx-apex/issues",
"main": "lib/index.js",
"dependencies": {
"@oclif/core": "^1.16.4",
"@salesforce/apex-node": "1.3.0",
"@salesforce/command": "^5.1.0",
"@salesforce/core": "^3.23.3",
"chalk": "^4.1.0",
"tslib": "^1"
},
"devDependencies": {
"@oclif/plugin-command-snapshot": "^3",
"@oclif/plugin-help": "^5",
"@oclif/test": "^2.2.2",
"@salesforce/dev-config": "3.0.1",
"@salesforce/plugin-command-reference": "^1.3.16",
"@salesforce/ts-sinon": "^1.1.2",
"@salesforce/ts-types": "1.2.2",
"@types/chai": "^4",
"@types/mkdirp": "0.5.2",
"@types/mocha": "^5",
"@types/node": "^14",
"chai": "^4",
"cross-env": "7.0.2",
"globby": "^8",
"mocha": "^5",
"nyc": "^14.1.1",
"oclif": "^2.6.3",
"shx": "^0.3.4",
"sinon": "^7.3.1",
"ts-node": "^8.7.0",
"typescript": "4.6.4"
},
"engines": {
"node": ">=14.14.0"
},
"files": [
"yarn.lock",
"/bin",
"/lib",
"/messages",
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"yarn.lock"
],
"homepage": "https://github.com/forcedotcom/salesforcedx-apex",
"keywords": [
"force",
"salesforce",
"sfdx",
"salesforcedx",
"sfdx-plugin",
"apex"
],
"license": "BSD-3-Clause",
"oclif": {
"commands": "./lib/commands",
"topics": {
"force": {
"external": true,
"subtopics": {
"apex": {
"description": "work with Apex code",
"longDescription": "Use the apex commands to create Apex classes, execute anonymous blocks, view your logs, run Apex tests, and view Apex test results.",
"subtopics": {
"log": {
"description": "generate and retrieve Apex logs"
},
"test": {
"description": "run Apex tests and retrieve test reports"
},
"class": {
"external": true
},
"trigger": {
"external": true
}
}
}
}
}
},
"bin": "sfdx",
"devPlugins": [
"@oclif/plugin-help",
"@oclif/plugin-command-snapshot",
"@salesforce/plugin-command-reference"
]
},
"repository": "forcedotcom/salesforcedx-apex",
"scripts": {
"build": "shx rm -rf lib && tsc -b",
"format": "prettier --config ../../.prettierrc --write './{src,test,scripts}/**/*.{ts,js,json}'",
"lint": "eslint -c .eslintrc.json --ext .ts ./src ./test",
"manifest:generate": "yarn build && oclif manifest",
"postpack": "shx rm -f oclif.manifest.json",
"test": "cross-env FORCE_COLOR=true mocha --recursive \"./test/**/*.test.ts\" --full-trace",
"version": "oclif readme && git add README.md",
"test:deprecation-policy": "./bin/run snapshot:compare",
"test:command-reference": "./bin/run commandreference:generate -p apex --erroronwarnings",
"package": "npm pack"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint-staged"
}
},
"lint-staged": {
"./{src,test}/**/*.{ts,js}": [
"eslint -c .eslintrc.json --fix"
]
}
}