-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
119 lines (119 loc) · 3.59 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "mcdev",
"version": "6.0.2",
"description": "Accenture Salesforce Marketing Cloud DevTools",
"author": "Accenture: joern.berkefeld, douglas.midgley, robert.zimmermann, maciej.barnas",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Accenture/sfmc-devtools.git"
},
"homepage": "https://github.com/Accenture/sfmc-devtools/wiki",
"bugs": {
"url": "https://github.com/Accenture/sfmc-devtools/issues",
"email": "joern.berkefeld@accenture.com"
},
"funding": {
"type": "corporate",
"url": "https://github.com/Accenture/sfmc-devtools"
},
"keywords": [
"sfmc",
"ide",
"devops",
"developer",
"exacttarget",
"salesforce",
"marketing cloud",
"package manager",
"fuel",
"soap",
"rest"
],
"main": "./lib/index.js",
"exports": {
".": {
"default": "./lib/index.js"
},
"./*": "./*.js"
},
"bin": {
"mcdev": "./lib/cli.js"
},
"engines": {
"node": ">=18.16.0"
},
"scripts": {
"start": "node lib/cli.js",
"mcdev": "node lib/cli.js",
"build": "run-s lint:fix docs test",
"debug": "node --nolazy --inspect-brk=9229 lib/cli.js",
"lint:fix": "eslint --fix lib/**/*.js && eslint --fix types/*.js && eslint --fix test/**/*.js",
"lint": "run-p -c lint-type lint-lib lint-test",
"lint-ts": "tsc -p jsconfig.json --maxNodeModuleJsDepth 1 --noEmit",
"lint-lib": "eslint lib/**/*.js",
"lint-type": "eslint types/*.js",
"lint-test": "eslint test/**/*.js",
"prepare": "husky || true",
"lint-and-test": "run-s lint test",
"test": "mocha --reporter-option maxDiffSize=25000",
"coverage": "c8 npm run test",
"version:major": "npm version --no-commit-hooks major",
"version:minor": "npm version --no-commit-hooks minor",
"version:patch": "npm version --no-commit-hooks patch"
},
"dependencies": {
"beauty-amp-core2": "0.4.6",
"cli-progress": "3.12.0",
"command-exists": "1.2.9",
"conf": "12.0.0",
"console.table": "0.10.0",
"deep-equal": "2.2.3",
"fs-extra": "11.2.0",
"inquirer": "9.2.6",
"json-to-table": "4.2.1",
"mustache": "4.2.0",
"p-limit": "5.0.0",
"prettier": "3.2.5",
"prettier-plugin-sql": "0.18.0",
"semver": "7.6.0",
"sfmc-sdk": "2.0.1",
"simple-git": "3.22.0",
"toposort": "2.0.2",
"update-notifier": "7.0.0",
"winston": "3.13.0",
"yargs": "17.7.2"
},
"devDependencies": {
"@types/mocha": "10.0.6",
"@types/node": "20.12.7",
"assert": "2.1.0",
"axios-mock-adapter": "1.22.0",
"c8": "9.1.0",
"chai": "5.1.0",
"chai-files": "1.4.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-config-ssjs": "1.1.11",
"eslint-plugin-jsdoc": "48.2.3",
"eslint-plugin-mocha": "10.4.3",
"eslint-plugin-prettier": "5.1.2",
"eslint-plugin-unicorn": "52.0.0",
"fast-xml-parser": "4.3.6",
"husky": "9.0.11",
"lint-staged": "15.2.2",
"mocha": "10.4.0",
"mock-fs": "5.2.0",
"npm-run-all": "4.1.5",
"prettier-eslint": "16.3.0"
},
"optionalDependencies": {
"fsevents": "*"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
]
},
"type": "module"
}