|
1 | 1 | { |
2 | 2 | "name": "sfdx-plugin-source-read", |
3 | | - "description": "sfdx plugin to read Metadata e.g. full Profiles via CRUD Metadata API", |
4 | 3 | "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", |
5 | 11 | "author": "Matthias Rolke @amtrack", |
6 | | - "bugs": "https://github.com/amtrack/sfdx-plugin-source-read/issues", |
7 | 12 | "type": "module", |
| 13 | + "exports": "./lib/index.js", |
8 | 14 | "bin": { |
9 | 15 | "sfdx-plugin-source-read": "bin/run.js" |
10 | 16 | }, |
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", |
21 | 17 | "files": [ |
22 | 18 | "/bin", |
23 | 19 | "/lib", |
24 | 20 | "/oclif.manifest.json" |
25 | 21 | ], |
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 | + }, |
32 | 33 | "oclif": { |
33 | | - "commands": "./lib/commands", |
34 | | - "bin": "sf", |
35 | | - "topicSeparator": " ", |
36 | 34 | "additionalHelpFlags": [ |
37 | 35 | "-h" |
38 | 36 | ], |
| 37 | + "bin": "sf", |
| 38 | + "commands": "./lib/commands", |
| 39 | + "topicSeparator": " ", |
39 | 40 | "topics": { |
40 | 41 | "crud-mdapi": { |
41 | 42 | "description": "Work with the CRUD Metadata API." |
42 | 43 | } |
43 | 44 | } |
44 | 45 | }, |
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" |
48 | 49 | }, |
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" |
56 | 54 | }, |
57 | 55 | "publishConfig": { |
58 | 56 | "provenance": true |
|
0 commit comments