-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.38 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.38 KB
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
{
"name": "@jongpie/sf-dotenv-cli-plugin",
"version": "1.0.0",
"description": "Salesforce CLI plugin for loading environment variables from .env files",
"author": "Jonathan Gillespie",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jongpie/sf-dotenv-cli-plugin.git"
},
"bugs": {
"url": "https://github.com/jongpie/sf-dotenv-cli-plugin/issues"
},
"homepage": "https://github.com/jongpie/sf-dotenv-cli-plugin#readme",
"keywords": [
"salesforce",
"cli",
"plugin",
"dotenv",
"environment",
"variables"
],
"engines": {
"node": ">=20.0.0"
},
"publishConfig": {
"access": "public"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*",
"oclif.manifest.json"
],
"dependencies": {
"@oclif/core": "4.11.4",
"dotenv": "17.4.2",
"fs-extra": "11.3.5"
},
"devDependencies": {
"@eslint/eslintrc": "3.3.5",
"@eslint/js": "10.0.1",
"@salesforce/core": "8.27.1",
"@salesforce/dev-scripts": "11.0.4",
"@salesforce/sf-plugins-core": "12.2.6",
"@types/fs-extra": "11.0.4",
"@types/jest": "30.0.0",
"@types/node": "25.5.0",
"eslint": "10.1.0",
"globals": "17.4.0",
"husky": "9.1.7",
"jest": "30.3.0",
"lint-staged": "16.4.0",
"oclif": "4.23.10",
"prettier": "3.8.1",
"ts-jest": "29.4.6",
"typescript": "5.9.3",
"typescript-eslint": "8.57.2"
},
"oclif": {
"bin": "sf",
"configMeta": "lib/shared/configMeta",
"dirname": "sf",
"topicSeparator": " ",
"plugins": [
"@oclif/plugin-help"
],
"hooks": {
"prerun": "./lib/hooks/prerun"
},
"commands": "./lib/commands",
"topics": {
"dotenv": {
"description": "Leverage .env files within sf CLI"
}
}
},
"scripts": {
"prepare": "husky",
"build": "tsc -p .",
"clean": "rm -rf lib",
"compile": "npm run clean && npm run build",
"prettier:verify": "prettier --check .",
"prettier:fix": "prettier --write .",
"lint:fix": "eslint . --fix",
"lint:verify": "eslint .",
"postpack": "rm -f oclif.manifest.json",
"prepack": "npm run compile && oclif manifest",
"preversion": "npm run compile",
"test:coverage": "jest --coverage",
"test:debug": "jest --inspect-brk",
"test:watch": "jest --watch",
"test": "npm run compile && jest"
},
"type": "module"
}