-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
91 lines (91 loc) · 2 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
{
"name": "@sfccdevops/sfcc-cli",
"version": "1.3.1",
"description": "Command Line Interface for Salesforce Commerce Cloud Sandbox Development",
"homepage": "https://github.com/sfccdevops/sfcc-cli#readme",
"license": "MIT",
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"main": "./bin/cli.js",
"bin": {
"sfcc": "./bin/cli.js"
},
"engines": {
"node": ">=14.17.3",
"npm": ">= 6.14.13"
},
"keywords": [
"cli",
"salesforce",
"sfcc",
"commerce-cloud",
"demandware",
"sandbox",
"sfra",
"watch",
"build",
"upload",
"log",
"search",
"macos",
"windows",
"linux"
],
"contributors": [
{
"name": "Peter Schmalfeldt",
"email": "[email protected]",
"url": "https://peterschmalfeldt.com"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/sfccdevops/sfcc-cli.git"
},
"bugs": {
"url": "https://github.com/sfccdevops/sfcc-cli/issues"
},
"scripts": {
"test": "eslint --ext .js ./ --fix && echo '\n【ツ】CODE PERFECTION !!!\n'"
},
"lint-staged": {
"*.js": [
"eslint . --fix",
"git add"
]
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"minimist": "^1.2.6",
"prettier": "^2.7.1"
},
"dependencies": {
"axios": "^0.27.2",
"bluebird": "^3.7.2",
"chalk": "^4.1.2",
"chokidar": "^3.5.3",
"debug": "^4.3.4",
"express": "^4.18.1",
"follow-redirects": "^1.15.1",
"fs-extra": "^10.1.0",
"https": "^1.0.0",
"lodash": "^4.17.21",
"node-notifier": "^10.0.1",
"ora": "^5.4.1",
"os": "^0.1.2",
"p-retry": "^4.6.2",
"prompt": "^1.3.0",
"prompt-confirm": "^2.0.4",
"truncate-logs": "^1.0.4",
"xml-js": "^1.6.11",
"xml2js": "^0.4.23",
"yargs": "^17.5.1"
}
}