-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
81 lines (81 loc) · 2.16 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
{
"name": "@spaceheroes/sfdx-clayton",
"description": "SFDX plugin to interact with Clayton platform",
"version": "0.0.4",
"author": "Davide Ungari <davide@clayton.io>",
"bugs": {
"url": "https://github.com/spaceheroes/sfdx-clayton/issues"
},
"dependencies": {
"@oclif/core": "^2.0.6",
"@salesforce/command": "^5",
"@salesforce/core": "^3.33.1",
"@salesforce/kit": "^1.8.3",
"axios": "^1.2.4",
"tslib": "^2"
},
"devDependencies": {
"@oclif/test": "^2.3.3",
"@salesforce/prettier-config": "^0.0.2",
"@salesforce/ts-sinon": "^1",
"@types/chai": "^4",
"@types/mocha": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"chai": "^4",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8",
"eslint-plugin-header": "^3",
"eslint-plugin-import": "^2",
"eslint-plugin-jsdoc": "^39.6.8",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-typescript": "^0",
"mocha": "^10.2.0",
"nyc": "^15",
"oclif": "^3.6.1",
"prettier": "^2",
"sinon": "^15.0.1",
"ts-node": "^10",
"typescript": "4"
},
"engines": {
"node": ">=14.0.0"
},
"files": [
"/lib",
"/messages",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/spaceheroes/sfdx-clayton",
"keywords": [
"code analysis",
"salesforce",
"security",
"sfdx",
"sfdx-plugin"
],
"license": "BSD-3-Clause",
"oclif": {
"commands": "./lib/commands",
"bin": "sfdx",
"topics": {
"clayton": {
"description": "Commands to interact with Clayton platform."
}
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/spaceheroes/sfdx-clayton.git"
},
"scripts": {
"build": "tsc -p .",
"lint": "eslint src/**/*.ts test/**/*.ts",
"postpack": "rm -f oclif.manifest.json",
"posttest": "eslint src/**/*.ts test/**/*.ts",
"prepack": "rm -rf lib && tsc -b && oclif manifest && oclif readme",
"test": "nyc --extension .ts --require ts-node/register mocha --forbid-only \"test/**/*.test.ts\"",
"version": "oclif readme && git add README.md"
}
}