This repository has been archived by the owner on Mar 10, 2024. It is now read-only.
forked from amtrack/sfdx-browserforce-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 1.85 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@dxatscale/browserforce",
"version": "0.0.3",
"description": "sfdx plugin for browser automation",
"author": "dxatscale",
"bin": {
"browserforce": "bin/run"
},
"dependencies": {
"@mdapi-issues/listmetadata-standardvalueset": "2.0.3",
"@oclif/core": "2.11.8",
"@oclif/plugin-help": "5.2.17",
"@salesforce/core": "^5.2.7",
"@salesforce/kit": "^3.0.9",
"@salesforce/sf-plugins-core": "^3.1.22",
"json-merge-patch": "1.0.2",
"p-retry": "4.6.2",
"puppeteer": "21.3.6",
"tslib": "2.4.0"
},
"devDependencies": {
"@salesforce/dev-config": "^4.0.1",
"@salesforce/ts-types": "2.0.5",
"@types/mocha": "10.0.1",
"@types/node": "18.16.8",
"mocha": "10.2.0",
"nyc": "15.1.0",
"oclif": "3.9.0",
"ts-node": "10.9.1",
"typescript": "5.0.4"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"/bin",
"/lib",
"/messages",
"/oclif.manifest.json"
],
"keywords": [
"salesforce",
"sfdx",
"sfdx-plugin"
],
"license": "MIT",
"oclif": {
"bin": "browserforce",
"commands": "./lib/commands",
"topics": {
"browserforce": {
"description": "browser automation"
}
},
"additionalHelpFlags": [
"-h"
]
},
"publishConfig": {
"access": "public"
},
"repository": "dxatscale/browserforce",
"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": "yarn build",
"prepare": "yarn build",
"test": "nyc --reporter=lcov --reporter=text mocha --require ts-node/register \"test/**/*.test.ts\" \"src/**/*.test.ts\"",
"test:e2e": "mocha --require ts-node/register \"test/**/*.e2e-spec.ts\" \"src/**/*.e2e-spec.ts\""
}
}