-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathpackage.json
More file actions
129 lines (129 loc) · 3.96 KB
/
package.json
File metadata and controls
129 lines (129 loc) · 3.96 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "mcdev",
"version": "9.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": {
".": {
"types": "./@types/lib/index.d.ts",
"default": "./lib/index.js"
},
"./*": {
"types": "./@types/lib/*.d.ts",
"default": "./lib/*.js"
}
},
"bin": {
"mcdev": "./lib/cli.js"
},
"engines": {
"node": "^20.19.0 || ^22.13.0 || >=24"
},
"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 types/*.js test/**/*.js",
"lint": "eslint lib/**/*.js types/*.js test/**/*.js",
"lint-ts": "tsc -p tsconfig.npmScripts.json",
"prepare": "husky || true",
"lint-and-test": "run-s lint test",
"test": "mocha --reporter-option maxDiffSize=25000",
"coverage": "c8 npm run test",
"prepare-release:audit-fix": "npm audit fix",
"prepare-release:git": "node prepare-release.js",
"prepare-release": "run-s --continue-on-error prepare-release:audit-fix lint-ts lint:fix prepare-release:git",
"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.9",
"cli-progress": "3.12.0",
"command-exists": "1.2.9",
"conf": "15.1.0",
"console.table": "0.10.0",
"deep-equal": "2.2.3",
"fs-extra": "11.3.4",
"inquirer": "13.3.0",
"json-to-table": "4.2.1",
"mustache": "4.2.0",
"p-limit": "7.3.0",
"prettier": "3.8.1",
"prettier-plugin-sql": "0.19.2",
"semver": "7.7.4",
"sfmc-sdk": "3.0.1",
"simple-git": "3.32.3",
"toposort": "2.0.2",
"update-notifier": "7.3.1",
"winston": "3.19.0",
"yargs": "18.0.0",
"yocto-spinner": "1.1.0"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@types/fs-extra": "11.0.4",
"@types/inquirer": "9.0.9",
"@types/mocha": "10.0.8",
"@types/node": "25.3.5",
"@types/yargs": "17.0.35",
"assert": "2.1.0",
"axios-mock-adapter": "2.0.0",
"c8": "11.0.0",
"chai": "6.2.2",
"chai-files": "1.4.0",
"eslint": "10.0.3",
"eslint-config-ssjs": "2.0.0",
"eslint-plugin-jsdoc": "62.7.1",
"eslint-plugin-mocha": "11.2.0",
"eslint-plugin-prettier": "5.5.5",
"eslint-plugin-unicorn": "63.0.0",
"fast-xml-parser": "5.4.2",
"globals": "17.4.0",
"husky": "9.1.7",
"lint-staged": "16.3.2",
"mocha": "11.7.5",
"mock-fs": "5.3.0",
"npm-run-all": "4.1.5",
"prettier-eslint": "16.4.2",
"typescript": "5.9.3"
},
"optionalDependencies": {
"fsevents": "*"
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
},
"type": "module"
}