This repository has been archived by the owner on Feb 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
96 lines (96 loc) · 2.22 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
91
92
93
94
95
96
{
"name": "sfcc-deploy",
"version": "0.0.0-development",
"description": "Deploy cartridges to a Salesforce Commerce Cloud (SFCC) instance",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": "dist/bin/sfcc-deploy.js",
"author": "Jens Simon <https://github.com/jenssimon/>",
"license": "MIT",
"keywords": [
"sfcc",
"demandware",
"salesforce",
"commercecloud",
"sfra",
"deploy"
],
"files": [
"dist",
"LICENSE",
"README.md",
"deploy.gif"
],
"repository": {
"type": "git",
"url": "https://github.com/jenssimon/sfcc-deploy"
},
"scripts": {
"lint": "eslint --ext .tsx,.ts,.mts,.cts,.jsx,.js,.mjs,.cjs ./",
"tsc": "tsc",
"prepublishOnly": "tsc",
"commit": "cz",
"postinstall": "husky",
"prepack": "pinst --disable",
"postpack": "pinst --enable",
"semantic-release": "semantic-release"
},
"dependencies": {
"archiver": "^5.3.2",
"camel-case": "^4.1.2",
"chalk": "^4.1.2",
"cli-step": "^1.0.2",
"commander": "^12.0.0",
"dwdav": ">=3.5.1"
},
"peerDependencies": {
"sfcc-ci": ">=2.4.0"
},
"devDependencies": {
"@commitlint/cli": "18.6.1",
"@commitlint/config-conventional": "18.6.2",
"@jenssimon/eslint-config-base": "7.3.23",
"@jenssimon/eslint-config-typescript": "5.2.23",
"@types/archiver": "5.3.4",
"@types/node": "20.11.20",
"commitizen": "4.3.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.57.0",
"husky": "9.0.11",
"lint-staged": "15.2.2",
"npm-run-all2": "6.1.2",
"pinst": "3.0.0",
"semantic-release": "23.0.2",
"sfcc-ci": "2.11.0",
"ts-node": "10.9.2",
"typescript": "5.3.3"
},
"eslintConfig": {
"parserOptions": {
"project": "tsconfig.json",
"tsconfigRootDir": "."
},
"extends": [
"@jenssimon/base",
"@jenssimon/typescript"
],
"rules": {
"@typescript-eslint/naming-convention": "off",
"sonarjs/cognitive-complexity": "off"
}
},
"packageManager": "yarn@4.1.0",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"**/*.{js,ts}": "eslint"
},
"release": {
"branches": [
"main"
]
}
}