-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpackage.json
126 lines (126 loc) · 3.72 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
120
121
122
123
124
125
126
{
"name": "mcdev",
"version": "7.3.0",
"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": ">=18.18.2"
},
"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",
"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": "13.0.1",
"console.table": "0.10.0",
"deep-equal": "2.2.3",
"fs-extra": "11.2.0",
"inquirer": "10.1.8",
"json-to-table": "4.2.1",
"mustache": "4.2.0",
"p-limit": "6.1.0",
"prettier": "3.3.3",
"prettier-plugin-sql": "0.18.1",
"semver": "7.6.3",
"sfmc-sdk": "2.1.2",
"simple-git": "3.25.0",
"toposort": "2.0.2",
"update-notifier": "7.2.0",
"winston": "3.14.2",
"yargs": "17.7.2"
},
"devDependencies": {
"@eslint/js": "9.9.0",
"@types/fs-extra": "11.0.4",
"@types/inquirer": "9.0.7",
"@types/mocha": "10.0.7",
"@types/node": "22.4.2",
"@types/yargs": "17.0.33",
"assert": "2.1.0",
"axios-mock-adapter": "2.0.0",
"c8": "10.0.0",
"chai": "5.1.1",
"chai-files": "1.4.0",
"eslint": "9.9.0",
"eslint-config-prettier": "9.1.0",
"eslint-config-ssjs": "2.0.0",
"eslint-plugin-jsdoc": "50.2.2",
"eslint-plugin-mocha": "10.5.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-unicorn": "55.0.0",
"fast-xml-parser": "4.4.1",
"globals": "15.9.0",
"husky": "9.1.5",
"lint-staged": "15.2.9",
"mocha": "10.7.3",
"mock-fs": "5.2.0",
"npm-run-all": "4.1.5",
"prettier-eslint": "16.3.0",
"typescript": "5.5.4"
},
"optionalDependencies": {
"fsevents": "*"
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
},
"type": "module"
}