-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
59 lines (59 loc) · 1.59 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
{
"name": "sfdx-browserforce-plugin",
"version": "0.0.0-development",
"description": "sfdx plugin for browser automation",
"author": "Matthias Rolke <mr.amtrack@gmail.com>",
"type": "module",
"bin": {
"sfdx-browserforce-plugin": "bin/run"
},
"dependencies": {
"@mdapi-issues/listmetadata-standardvalueset": "2.0.4",
"@salesforce/sf-plugins-core": "12.0.11",
"p-retry": "6.2.0",
"puppeteer": "23.6.0"
},
"devDependencies": {
"@salesforce/dev-scripts": "10.2.10",
"oclif": "4.15.12"
},
"files": [
"/bin",
"/lib",
"/oclif.manifest.json"
],
"keywords": [
"salesforce",
"sfdx",
"sfdx-plugin"
],
"license": "MIT",
"oclif": {
"bin": "sf",
"topicSeparator": " ",
"commands": "./lib/commands",
"topics": {
"browserforce": {
"description": "browser automation"
}
},
"additionalHelpFlags": [
"-h"
]
},
"mocha": {
"loader": "ts-node/esm",
"no-warnings": "ExperimentalWarning"
},
"repository": "amtrack/sfdx-browserforce-plugin",
"scripts": {
"build": "rm -rf lib && tsc -p . && oclif manifest",
"develop": "bash scripts/develop.sh",
"format": "npx prettier --write \"+(src|test)/**/*.+(ts|js|json)\"",
"generate:plugin": "npx hygen plugin new",
"prepack": "npm run build",
"prepare": "npm run build",
"test": "tsc -p test && nyc --reporter=lcov --reporter=text mocha \"test/**/*.test.ts\" \"src/**/*.test.ts\"",
"test:e2e": "tsc -p test && mocha --slow 30s --timeout 2m --file test/e2e-setup.ts \"test/**/*.e2e-spec.ts\" \"src/**/*.e2e-spec.ts\""
}
}