@ds-sfdc/sfparty 0.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,51 @@
1
+ {
2
+ "name": "@ds-sfdc/sfparty",
3
+ "version": "0.0.0",
4
+ "description": "Split Salesforce metadata XML file into YAML (or JSON) parts, and combine back to XML",
5
+ "type": "module",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/TimPaulaskasDS/sfparty.git"
9
+ },
10
+ "bin": {
11
+ "sfparty": "index.js"
12
+ },
13
+ "main": "index.js",
14
+ "scripts": {
15
+ "test": "mocha 'tests/**/*.js' --recursive--reporter spec"
16
+ },
17
+ "keywords": [
18
+ "xml,split,combine,yaml,json"
19
+ ],
20
+ "author": "Tim Paulaskas",
21
+ "license": "BSD-3-Clause",
22
+ "dependencies": {
23
+ "chai": "^4.3.7",
24
+ "chalk": "^5.2.0",
25
+ "cli-spinners": "^2.7.0",
26
+ "convert-hrtime": "^5.0.0",
27
+ "js-yaml": "^4.1.0",
28
+ "log-update": "^5.0.1",
29
+ "util": "^0.10.3",
30
+ "winston": "^3.8.2",
31
+ "xml2js": "^0.4.23",
32
+ "yargs": "^17.6.2"
33
+ },
34
+ "devDependencies": {
35
+ "mocha": "^10.2.0",
36
+ "nodemon": "^2.0.20",
37
+ "should": "^7.1.0"
38
+ },
39
+ "engines": {
40
+ "node": ">=0.11"
41
+ },
42
+ "bugs": {
43
+ "url": "https://github.com/TimPaulaskasDS/sfparty/issues"
44
+ },
45
+ "homepage": "https://github.com/TimPaulaskasDS/sfparty#readme",
46
+ "directories": {
47
+ "example": "examples",
48
+ "lib": "lib",
49
+ "test": "tests"
50
+ }
51
+ }
@@ -0,0 +1,11 @@
1
+ {
2
+ "packageDirectories": [
3
+ {
4
+ "path": "force-app",
5
+ "default": true
6
+ }
7
+ ],
8
+ "namespace": "",
9
+ "sfdcLoginUrl": "https://login.salesforce.com",
10
+ "sourceApiVersion": "53.0"
11
+ }
@@ -0,0 +1,14 @@
1
+ 'use strict';
2
+ import chai from 'chai'
3
+
4
+ var calls = [];
5
+
6
+ before(function () {
7
+ calls.push('before');
8
+ });
9
+
10
+ describe('root', function () {
11
+ it('should be a valid suite', function () {
12
+ chai.expect(calls, 'to equal', ['before']);
13
+ });
14
+ });