forked from amtrack/sfdx-browserforce-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.8 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
{
"name": "sfdx-browserforce-plugin",
"version": "0.0.0-development",
"description": "sfdx plugin for browser automation",
"author": "Matthias Rolke <[email protected]>",
"bin": {
"sfdx-browserforce-plugin": "bin/run"
},
"dependencies": {
"@mdapi-issues/listmetadata-standardvalueset": "2.0.3",
"@salesforce/sf-plugins-core": "4.1.1",
"p-retry": "4.6.2",
"puppeteer": "21.5.1"
},
"devDependencies": {
"@salesforce/dev-config": "4.1.0",
"@salesforce/prettier-config": "0.0.3",
"@types/mocha": "10.0.4",
"@types/node": "20.9.0",
"mocha": "10.2.0",
"nyc": "15.1.0",
"oclif": "4.0.3",
"prettier": "3.1.0",
"ts-node": "10.9.1",
"typescript": "5.2.2"
},
"engines": {
"node": ">=14.0.0"
},
"files": [
"/bin",
"/lib",
"/messages",
"/oclif.manifest.json"
],
"keywords": [
"salesforce",
"sfdx",
"sfdx-plugin"
],
"license": "MIT",
"oclif": {
"bin": "sf",
"topicSeparator": " ",
"commands": "./lib/commands",
"topics": {
"browserforce": {
"description": "browser automation"
}
},
"additionalHelpFlags": [
"-h"
]
},
"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": "yarn build",
"prepare": "yarn build",
"test": "tsc -p test && nyc --reporter=lcov --reporter=text mocha --require ts-node/register \"test/**/*.test.ts\" \"src/**/*.test.ts\"",
"test:e2e": "tsc -p test && mocha --require ts-node/register --slow 30s --timeout 2m --file test/e2e-setup.ts \"test/**/*.e2e-spec.ts\" \"src/**/*.e2e-spec.ts\""
}
}