-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
90 lines (90 loc) · 2.69 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
{
"name": "@assisisolutions/sfdx-ci-plugin",
"description": "SFDX plugin to set up a connected app usable for continuous integration with \"one click\"",
"version": "1.0.1",
"author": "Frans Flippo",
"bugs": "https://github.com/fransflippo/sfdx-ci-plugin/issues",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@oclif/command": "^1",
"@oclif/config": "^1",
"@oclif/errors": "^1",
"@salesforce/command": "^3.0.3",
"@salesforce/core": "^2.1.6",
"@salesforce/ts-sinon": "^1.3.18",
"jsforce": "^1.10.0",
"node-forge": "0.10.0",
"np": "^7.5.0",
"tslib": "^1"
},
"devDependencies": {
"@oclif/dev-cli": "^1",
"@oclif/plugin-help": "^2",
"@oclif/test": "^1.2.4",
"@salesforce/cli-plugins-testkit": "^1.1.5",
"@salesforce/dev-config": "^1.4.4",
"@types/chai": "^4",
"@types/chai-as-promised": "^7.1.4",
"@types/jsforce": "^1.9.30",
"@types/mocha": "^8",
"@typescript-eslint/eslint-plugin": "^2.17.0",
"@typescript-eslint/parser": "^2.17.0",
"chai": "^4",
"chai-as-promised": "^7.1.1",
"eslint": "^6.8.0",
"eslint-config-airbnb-typescript": "^6.3.1",
"eslint-config-oclif": "^3.1.0",
"eslint-config-oclif-typescript": "^0.1.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-prettier": "^3.1.2",
"globby": "^8",
"mocha": "^9",
"nyc": "^15",
"sinon-chai": "^3.7.0",
"ts-node": "^9",
"ts-sinon": "^2.0.1",
"tslint": "^5",
"tslint-no-unused-expression-chai": "^0.1.4"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/lib",
"/messages",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/fransflippo/sfdx-ci-plugin",
"keywords": [
"salesforce",
"sfdx",
"sfdx-plugin",
"ci"
],
"license": "MIT",
"oclif": {
"commands": "./lib/commands",
"bin": "sfdx",
"topics": {
"ci": {
"description": "Commands related to continuous integration"
}
},
"devPlugins": [
"@oclif/plugin-help"
]
},
"repository": "fransflippo/sfdx-ci-plugin",
"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",
"test": "nyc --extension .ts mocha -r ts-node/register --forbid-only \"test/**/*.test.ts\" --exclude \"test/commands/**\" && nyc --exclude \"test/**\" --exclude \"src/helpers/**\" --extension .ts mocha -r ts-node/register --forbid-only \"test/commands/**\"",
"version": "oclif-dev readme && git add README.md"
}
}