forked from forcedotcom/sfdx-scanner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
124 lines (124 loc) · 3.07 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "@salesforce/sfdx-scanner",
"description": "Static code scanner that applies quality and security rules to Apex code, and provides feedback.",
"version": "2.13.6",
"author": "ISV SWAT",
"bugs": "https://github.com/forcedotcom/sfdx-scanner/issues",
"dependencies": {
"@lwc/eslint-plugin-lwc": "^0.10.0",
"@oclif/command": "^1",
"@oclif/config": "^1",
"@oclif/errors": "^1",
"@salesforce/command": "^3",
"@salesforce/core": "^2.1.6",
"@salesforce/eslint-config-lwc": "^0.7.0",
"@typescript-eslint/eslint-plugin": "^2.21.0",
"@typescript-eslint/parser": "^2.21.0",
"babel-eslint": "^10.1.0",
"cross-spawn": "^7.0.3",
"eslint": "^6.8.0",
"find-java-home": "1.1.0",
"globby": "^11.0.0",
"html-escaper": "^3.0.0",
"is-zip": "^1.0.0",
"isbinaryfile": "^4.0.8",
"mustache": "^4.0.1",
"node-stream-zip": "1.13.2",
"normalize-path": "^3.0.0",
"picomatch": "^2.2.2",
"reflect-metadata": "^0.1.13",
"retire": "^2.2.5",
"semver": "^7.3.4",
"ts-node": "^8",
"tslib": "^2",
"tsyringe": "^4.1.0",
"typescript": "^3.8.2",
"untildify": "^4.0.0",
"word-wrap": "^1.2.3",
"xml-js": "^1.6.11"
},
"resolutions": {
"bl": "^4.0.3",
"lodash": "^4.17.21",
"ajv": "^6.12.3",
"minimist": "^1.2.3",
"hosted-git-info": "^3.0.8",
"glob-parent": "^5.1.2"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@oclif/dev-cli": "^1",
"@oclif/plugin-help": "^3",
"@oclif/test": "^1",
"@salesforce/dev-config": "^1.5.0",
"@salesforce/ts-sinon": "^1.1.2",
"@types/chai": "^4",
"@types/mocha": "^7.0.2",
"@types/mustache": "^4.0.1",
"@types/node": "^13.11.1",
"chai": "^4",
"eslint": "^6.8.0",
"mocha": "^8.1.1",
"mocha-junit-reporter": "^2.0.0",
"nyc": "^15.0.0",
"sinon": "^9.0.0",
"tildify": "^2.0.0",
"ts-mockito": "^2.6.1"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/dist",
"/lib",
"/messages",
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"/html-templates",
"/retire-js"
],
"homepage": "https://forcedotcom.github.io/sfdx-scanner",
"keywords": [
"sfdx-plugin"
],
"license": "MIT",
"oclif": {
"commands": "./lib/commands",
"bin": "sfdx",
"topics": {
"scanner": {
"description": "scan code to detect code quality issues and security vulnerabilities",
"subtopics": {
"rule": {
"description": "view or add rules to scan code"
}
}
},
"scanner:scannerCommand": {
"hidden": true
}
},
"devPlugins": [
"@oclif/plugin-help"
],
"hooks": {
"init": "./lib/lib/hooks/init"
}
},
"nyc": {
"branches": "80",
"lines": "90",
"functions": "90",
"statements": "90"
},
"repository": "forcedotcom/sfdx-scanner",
"scripts": {
"build": "./gradlew build",
"prepack": "rm -rf lib && tsc -b && oclif-dev manifest && oclif-dev readme",
"postpack": "rm -f oclif.manifest.json",
"lint": "eslint ./src --ext .ts",
"test": "./gradlew test jacocoTestCoverageVerification && nyc mocha --timeout 10000 --retries 5 \"./test/**/*.test.ts\"",
"coverage": "nyc report --reporter text",
"version": "oclif-dev readme && git add README.md"
}
}