Skip to content

Commit c175b18

Browse files
committed
chore: sort package.json
1 parent cfd7b1a commit c175b18

1 file changed

Lines changed: 29 additions & 31 deletions

File tree

package.json

Lines changed: 29 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,58 +1,56 @@
11
{
22
"name": "sfdx-plugin-source-read",
3-
"description": "sfdx plugin to read Metadata e.g. full Profiles via CRUD Metadata API",
43
"version": "0.0.0-development",
4+
"description": "sfdx plugin to read Metadata e.g. full Profiles via CRUD Metadata API",
5+
"keywords": [
6+
"sfdx-plugin",
7+
"sf-plugin"
8+
],
9+
"repository": "amtrack/sfdx-plugin-source-read",
10+
"license": "MIT",
511
"author": "Matthias Rolke @amtrack",
6-
"bugs": "https://github.com/amtrack/sfdx-plugin-source-read/issues",
712
"type": "module",
13+
"exports": "./lib/index.js",
814
"bin": {
915
"sfdx-plugin-source-read": "bin/run.js"
1016
},
11-
"dependencies": {
12-
"@salesforce/sf-plugins-core": "12.2.4",
13-
"@salesforce/source-deploy-retrieve": "12.22.13"
14-
},
15-
"devDependencies": {
16-
"@salesforce/dev-scripts": "11.0.4",
17-
"execa": "9.6.0",
18-
"oclif": "4.22.22"
19-
},
20-
"exports": "./lib/index.js",
2117
"files": [
2218
"/bin",
2319
"/lib",
2420
"/oclif.manifest.json"
2521
],
26-
"homepage": "https://github.com/amtrack/sfdx-plugin-source-read",
27-
"keywords": [
28-
"sfdx-plugin",
29-
"sf-plugin"
30-
],
31-
"license": "MIT",
22+
"scripts": {
23+
"build": "rm -rf lib && tsc -p . && oclif manifest",
24+
"prepack": "npm run build",
25+
"prepare": "npm run build",
26+
"test": "tsc -p test && mocha \"test/**/*.test.ts\"",
27+
"test:e2e": "tsc -p test && mocha --timeout 60000 \"test/**/*.e2e.ts\""
28+
},
29+
"mocha": {
30+
"loader": "ts-node/esm",
31+
"no-warnings": "ExperimentalWarning"
32+
},
3233
"oclif": {
33-
"commands": "./lib/commands",
34-
"bin": "sf",
35-
"topicSeparator": " ",
3634
"additionalHelpFlags": [
3735
"-h"
3836
],
37+
"bin": "sf",
38+
"commands": "./lib/commands",
39+
"topicSeparator": " ",
3940
"topics": {
4041
"crud-mdapi": {
4142
"description": "Work with the CRUD Metadata API."
4243
}
4344
}
4445
},
45-
"mocha": {
46-
"loader": "ts-node/esm",
47-
"no-warnings": "ExperimentalWarning"
46+
"dependencies": {
47+
"@salesforce/sf-plugins-core": "12.2.4",
48+
"@salesforce/source-deploy-retrieve": "12.22.13"
4849
},
49-
"repository": "amtrack/sfdx-plugin-source-read",
50-
"scripts": {
51-
"build": "rm -rf lib && tsc -p . && oclif manifest",
52-
"prepack": "npm run build",
53-
"prepare": "npm run build",
54-
"test": "tsc -p test && mocha \"test/**/*.test.ts\"",
55-
"test:e2e": "tsc -p test && mocha --timeout 60000 \"test/**/*.e2e.ts\""
50+
"devDependencies": {
51+
"@salesforce/dev-scripts": "11.0.4",
52+
"execa": "9.6.0",
53+
"oclif": "4.22.22"
5654
},
5755
"publishConfig": {
5856
"provenance": true

0 commit comments

Comments
 (0)