-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
38 lines (38 loc) · 1.02 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
{
"name": "sfdx-packaging-results",
"version": "2.0.0",
"description": "Removes not needed package versions from sfdx-project.json and updates references in the README.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"lint": "eslint **/*.js",
"prettier": "prettier --write '**/*.{js,json,md,yaml,yml}'",
"prepare": "husky || true",
"precommit": "lint-staged"
},
"keywords": [
"github",
"actions"
],
"author": "Salesforce Developer Relations",
"license": "CC0-1.0",
"dependencies": {
"@actions/core": "^1.10.1"
},
"repository": "trailheadapps/github-action-sfdx-packaging-updater",
"devDependencies": {
"eslint": "^9.2.0",
"husky": "^9.0.11",
"lint-staged": "^12.2.2",
"prettier": "^3.2.5"
},
"lint-staged": {
"**/*.{js,json,md,yaml,yml}": [
"prettier --write"
],
"**/*.js": "eslint"
},
"volta": {
"node": "20.13.1"
}
}