forked from amtrack/sfdx-browserforce-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.12 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
74
75
76
{
"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.2",
"@salesforce/command": "3.1.0",
"json-merge-patch": "1.0.1",
"p-retry": "4.6.2",
"puppeteer": "10.4.0",
"tslib": "2.4.0"
},
"devDependencies": {
"@oclif/dev-cli": "1.26.0",
"@oclif/plugin-help": "3.2.2",
"@salesforce/dev-config": "2.1.0",
"@types/mocha": "9.0.0",
"@types/node": "10.17.60",
"@typescript-eslint/eslint-plugin": "4.26.1",
"@typescript-eslint/parser": "4.26.1",
"eslint": "8.16.0",
"eslint-config-prettier": "8.3.0",
"mocha": "9.1.3",
"nyc": "15.1.0",
"sfdx-cli": "7.105.0",
"tmp": "0.2.1",
"ts-node": "10.8.0",
"typescript": "4.2.4"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/lib",
"/messages",
"/oclif.manifest.json",
"/yarn.lock"
],
"keywords": [
"salesforce",
"sfdx",
"sfdx-plugin"
],
"license": "MIT",
"oclif": {
"bin": "sfdx-browserforce-plugin",
"commands": "./lib/commands",
"topics": {
"browserforce": {
"description": "browser automation"
}
},
"devPlugins": [
"@oclif/plugin-help"
]
},
"repository": "amtrack/sfdx-browserforce-plugin",
"scripts": {
"build": "rm -rf lib && tsc -b && oclif-dev manifest && oclif-dev readme",
"develop": "bash scripts/develop.sh",
"format": "prettier --write \"+(src|test)/**/*.+(ts|js|json)\"",
"generate:plugin": "npx hygen plugin new",
"lint": "tsc -p . --noEmit && eslint \"src/**/*.ts\" \"test/**/*.ts\"",
"postpack": "rm -f oclif.manifest.json",
"prepack": "yarn build",
"prepare": "yarn build",
"test": "nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\" \"src/**/*.test.ts\"",
"test:e2e": "mocha --forbid-only \"test/**/*.e2e-spec.ts\" \"src/**/*.e2e-spec.ts\"",
"version": "oclif-dev readme && git add README.md"
}
}