-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 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
{
"name": "sfdx-source-scanner",
"description": "This package will scan salesforce metadata files to validate for certain rules",
"version": "0.0.6",
"author": "Gavin Palmer",
"bugs": "https://github.com/gavinhughpalmer/sfdx-source-scanner/issues",
"dependencies": {
"@oclif/command": "1.8.0",
"@oclif/config": "1.17.0",
"@oclif/errors": "1.3.5",
"@salesforce/command": "4.0.4",
"@salesforce/core": "2.27.0",
"fast-glob": "3.2.7",
"fast-xml-parser": "3.21.1",
"tslib": "2.3.1"
},
"devDependencies": {
"@oclif/dev-cli": "1.26.10",
"@oclif/plugin-help": "3.3.1",
"@oclif/test": "1.2.9",
"@salesforce/dev-config": "1.6.0",
"@types/chai": "4.3.8",
"@types/mocha": "8.2.3",
"@types/node": "14.18.0",
"chai": "4.3.10",
"globby": "12.2.0",
"mocha": "5.2.0",
"nyc": "15.1.0",
"prettier": "2.8.8",
"ts-node": "10.9.1",
"tslint": "6.1.3"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/lib",
"/messages",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/gavinhughpalmer/sfdx-source-scanner",
"keywords": [
"sfdx-plugin"
],
"license": "MIT",
"oclif": {
"commands": "./lib/commands",
"bin": "sfdx",
"topics": {
"hello": {
"description": "Commands to say hello."
}
},
"devPlugins": [
"@oclif/plugin-help"
]
},
"repository": "gavinhughpalmer/sfdx-source-scanner",
"scripts": {
"lint": "tslint --project . --config tslint.json --format stylish",
"postpack": "rm -f oclif.manifest.json",
"posttest": "tslint -p test -t stylish",
"prepack": "rm -rf lib && tsc -b && oclif-dev manifest && oclif-dev readme",
"pretest": "tsc",
"test": "nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"",
"version": "oclif-dev readme && git add README.md",
"fix": "tslint -p test -t stylish --fix",
"postversion": "yarn publish",
"postpublish": "git push origin --all; git push origin --tags",
"preversion": "yarn test",
"format": "prettier 'src/**/*.ts' --write && prettier 'test/**/*.ts' --write"
}
}