-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpackage.json
131 lines (131 loc) · 4.07 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
127
128
129
130
131
{
"name": "mcdev",
"version": "7.6.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": "[email protected]"
},
"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",
"prepare-release:audit-fix": "npm audit fix",
"prepare-release:git-stage": "git add .",
"prepare-release:git-commit": "git commit -n -m \"prepare-release changes\"",
"prepare-release": "run-s prepare-release:audit-fix lint-ts lint:fix prepare-release:git-stage prepare-release:git-commit",
"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.1.0",
"console.table": "0.10.0",
"deep-equal": "2.2.3",
"fs-extra": "11.2.0",
"inquirer": "12.3.2",
"json-to-table": "4.2.1",
"mustache": "4.2.0",
"p-limit": "6.2.0",
"prettier": "3.4.2",
"prettier-plugin-sql": "0.18.1",
"semver": "7.6.3",
"sfmc-sdk": "2.1.2",
"simple-git": "3.27.0",
"toposort": "2.0.2",
"update-notifier": "7.3.1",
"winston": "3.17.0",
"yargs": "17.7.2",
"yocto-spinner": "0.1.2"
},
"devDependencies": {
"@eslint/js": "9.17.0",
"@types/fs-extra": "11.0.4",
"@types/inquirer": "9.0.7",
"@types/mocha": "10.0.8",
"@types/node": "22.10.6",
"@types/yargs": "17.0.33",
"assert": "2.1.0",
"axios-mock-adapter": "2.0.0",
"c8": "10.1.3",
"chai": "5.1.2",
"chai-files": "1.4.0",
"eslint": "9.18.0",
"eslint-config-prettier": "9.1.0",
"eslint-config-ssjs": "2.0.0",
"eslint-plugin-jsdoc": "50.6.1",
"eslint-plugin-mocha": "10.5.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-unicorn": "56.0.1",
"fast-xml-parser": "4.5.1",
"globals": "15.14.0",
"husky": "9.1.7",
"lint-staged": "15.3.0",
"mocha": "11.0.1",
"mock-fs": "5.3.0",
"npm-run-all": "4.1.5",
"prettier-eslint": "16.3.0",
"typescript": "5.7.3"
},
"optionalDependencies": {
"fsevents": "*"
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
},
"type": "module"
}