hardis-formula 1.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.
@@ -0,0 +1,4 @@
1
+ {
2
+ "commands": {},
3
+ "version": "1.0.0"
4
+ }
package/package.json ADDED
@@ -0,0 +1,193 @@
1
+ {
2
+ "name": "hardis-formula",
3
+ "description": "Evaluates a Salesforce formula against one or more records and returns the result for each.",
4
+ "version": "1.0.0",
5
+ "dependencies": {
6
+ "@oclif/core": "^4",
7
+ "@salesforce/core": "^8",
8
+ "@salesforce/sf-plugins-core": "^12",
9
+ "@salesforce/ts-types": "^2.0.12",
10
+ "@steedos/formula": "^3.0.12",
11
+ "chalk": "^5.6.2",
12
+ "fs-extra": "^11.3.4",
13
+ "sfdx-hardis": "^7.6.3"
14
+ },
15
+ "devDependencies": {
16
+ "@oclif/plugin-command-snapshot": "^5.1.9",
17
+ "@salesforce/cli-plugins-testkit": "^5.3.10",
18
+ "@salesforce/dev-scripts": "^10",
19
+ "@types/fs-extra": "^11.0.4",
20
+ "@types/node": "^25.5.2",
21
+ "eslint-plugin-sf-plugin": "^1.18.6",
22
+ "oclif": "^4.14.0",
23
+ "ts-node": "^10.9.2",
24
+ "typescript": "^5.4.5"
25
+ },
26
+ "engines": {
27
+ "node": ">=18.0.0"
28
+ },
29
+ "files": [
30
+ "/lib",
31
+ "/messages",
32
+ "/oclif.manifest.json",
33
+ "/oclif.lock"
34
+ ],
35
+ "keywords": [
36
+ "force",
37
+ "salesforce",
38
+ "salesforcedx",
39
+ "sf",
40
+ "sf-plugin",
41
+ "sfdx",
42
+ "sfdx-plugin"
43
+ ],
44
+ "license": "BSD-3-Clause",
45
+ "oclif": {
46
+ "commands": "./lib/commands",
47
+ "bin": "sf",
48
+ "topicSeparator": " ",
49
+ "devPlugins": [
50
+ "@oclif/plugin-help"
51
+ ],
52
+ "topics": {
53
+ "hardis-formula": {
54
+ "description": "Hardis integrated formula evaluator."
55
+ }
56
+ },
57
+ "flexibleTaxonomy": true
58
+ },
59
+ "scripts": {
60
+ "build": "wireit",
61
+ "clean": "sf-clean",
62
+ "clean-all": "sf-clean all",
63
+ "compile": "wireit",
64
+ "docs": "sf-docs",
65
+ "format": "wireit",
66
+ "link-check": "wireit",
67
+ "lint": "wireit",
68
+ "postinstall": "yarn husky install",
69
+ "postpack": "sf-clean --ignore-signing-artifacts",
70
+ "prepack": "sf-prepack",
71
+ "test": "wireit",
72
+ "test:nuts": "nyc mocha \"**/*.nut.ts\" --slow 4500 --timeout 600000 --parallel",
73
+ "test:only": "wireit",
74
+ "version": "oclif readme"
75
+ },
76
+ "publishConfig": {
77
+ "access": "public"
78
+ },
79
+ "wireit": {
80
+ "build": {
81
+ "dependencies": [
82
+ "compile",
83
+ "lint"
84
+ ]
85
+ },
86
+ "compile": {
87
+ "command": "tsc -p . --pretty --incremental",
88
+ "files": [
89
+ "src/**/*.ts",
90
+ "**/tsconfig.json",
91
+ "messages/**"
92
+ ],
93
+ "output": [
94
+ "lib/**",
95
+ "*.tsbuildinfo"
96
+ ],
97
+ "clean": "if-file-deleted"
98
+ },
99
+ "format": {
100
+ "command": "prettier --write \"+(src|test|schemas)/**/*.+(ts|js|json)|command-snapshot.json\"",
101
+ "files": [
102
+ "src/**/*.ts",
103
+ "test/**/*.ts",
104
+ "schemas/**/*.json",
105
+ "command-snapshot.json",
106
+ ".prettier*"
107
+ ],
108
+ "output": []
109
+ },
110
+ "lint": {
111
+ "command": "eslint src test --color --cache --cache-location .eslintcache",
112
+ "files": [
113
+ "src/**/*.ts",
114
+ "test/**/*.ts",
115
+ "messages/**",
116
+ "**/.eslint*",
117
+ "**/tsconfig.json"
118
+ ],
119
+ "output": []
120
+ },
121
+ "test:compile": {
122
+ "command": "tsc -p \"./test\" --pretty",
123
+ "files": [
124
+ "test/**/*.ts",
125
+ "**/tsconfig.json"
126
+ ],
127
+ "output": []
128
+ },
129
+ "test": {
130
+ "dependencies": [
131
+ "test:compile",
132
+ "test:only",
133
+ "lint"
134
+ ]
135
+ },
136
+ "test:only": {
137
+ "command": "nyc mocha \"test/**/*.test.ts\"",
138
+ "env": {
139
+ "FORCE_COLOR": "2"
140
+ },
141
+ "files": [
142
+ "test/**/*.ts",
143
+ "src/**/*.ts",
144
+ "**/tsconfig.json",
145
+ ".mocha*",
146
+ "!*.nut.ts",
147
+ ".nycrc"
148
+ ],
149
+ "output": []
150
+ },
151
+ "test:command-reference": {
152
+ "command": "node --loader ts-node/esm --no-warnings=ExperimentalWarning \"./bin/dev.js\" commandreference:generate --erroronwarnings",
153
+ "files": [
154
+ "src/**/*.ts",
155
+ "messages/**",
156
+ "package.json"
157
+ ],
158
+ "output": [
159
+ "tmp/root"
160
+ ]
161
+ },
162
+ "test:deprecation-policy": {
163
+ "command": "node --loader ts-node/esm --no-warnings=ExperimentalWarning \"./bin/dev.js\" snapshot:compare",
164
+ "files": [
165
+ "src/**/*.ts"
166
+ ],
167
+ "output": [],
168
+ "dependencies": [
169
+ "compile"
170
+ ]
171
+ },
172
+ "test:json-schema": {
173
+ "command": "node --loader ts-node/esm --no-warnings=ExperimentalWarning \"./bin/dev.js\" schema:compare",
174
+ "files": [
175
+ "src/**/*.ts",
176
+ "schemas"
177
+ ],
178
+ "output": []
179
+ },
180
+ "link-check": {
181
+ "command": "node -e \"process.exit(process.env.CI ? 0 : 1)\" || linkinator \"**/*.md\" --skip \"CHANGELOG.md|node_modules|test/|confluence.internal.salesforce.com|my.salesforce.com|%s\" --markdown --retry --directory-listing --verbosity error",
182
+ "files": [
183
+ "./*.md",
184
+ "./!(CHANGELOG).md",
185
+ "messages/**/*.md"
186
+ ],
187
+ "output": []
188
+ }
189
+ },
190
+ "exports": "./lib/index.js",
191
+ "type": "module",
192
+ "author": "matheus-delazeri"
193
+ }