-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
73 lines (73 loc) · 1.96 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": "sfdx-plugins-apex_coverage_report",
"description": "Apex Code Coverage",
"version": "1.0.2",
"author": "Chris Sullivan @chrisgit",
"homepage": "https://github.com/chrisgit/sfdx-plugins-apex_coverage_report",
"bugs": "https://github.com/chrisgit/sfdx-plugins-apex_coverage_report/issues",
"repository": {
"type": "git",
"url": "https://github.com/chrisgit/sfdx-plugins-apex_coverage_report"
},
"license": "MIT",
"engines": {
"node": ">=11.0.0"
},
"files": [
"/lib",
"/messages",
"/oclif.manifest.json",
"LICENSE",
"README.md"
],
"keywords": [
"sfdx-plugin",
"coverage"
],
"oclif": {
"commands": "./lib/commands",
"bin": "sfdx",
"topics": {
"chrisgit": {
"description": "Command to create a code coverage report for local development or CI."
}
},
"devPlugins": [
"@oclif/plugin-help"
]
},
"scripts": {
"postpack": "rimraf oclif.manifest.json",
"posttest": "tslint -p test -t stylish",
"prepack": "rimraf lib && tsc -b && oclif-dev manifest",
"prepare": "rimraf lib && tsc -b",
"test": "nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"",
"version": "oclif-dev readme && git add README.md"
},
"dependencies": {
"@oclif/command": "1.5.11",
"@oclif/config": "1.12.9",
"@oclif/errors": "1",
"@salesforce/command": "^1.5.3",
"@salesforce/core": "^1.2.2",
"istanbul": "^0.4.5",
"tslib": "1"
},
"devDependencies": {
"@oclif/dev-cli": "^1.21.2",
"@oclif/plugin-help": "^2",
"@oclif/test": "^1.2.4",
"@salesforce/dev-config": "^1.1.4",
"@types/chai": "^4",
"@types/mocha": "^5.2.6",
"@types/node": "^11.10.5",
"chai": "^4",
"globby": "^9.1.0",
"mocha": "^6.0.2",
"nyc": "^14.1.1",
"rimraf": "^2.6.2",
"sinon": "7.2.7",
"ts-node": "^8.0.3",
"typescript": "3.3.3333"
}
}