-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
118 lines (118 loc) · 3.58 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
{
"name": "mcdev",
"version": "6.0.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": {
".": {
"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",
"docs": "jsdoc2md --files lib/**/*.js types/**/*.js > docs/dist/documentation.md",
"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-lib": "eslint lib/**/*.js",
"lint-type": "eslint types/*.js",
"lint-test": "eslint test/**/*.js",
"manual-prepare": "husky install",
"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-core": "0.3.7",
"cli-progress": "3.12.0",
"command-exists": "1.2.9",
"conf": "11.0.1",
"console.table": "0.10.0",
"deep-equal": "2.2.2",
"fs-extra": "11.1.1",
"inquirer": "9.2.6",
"json-to-table": "4.2.1",
"mustache": "4.2.0",
"p-limit": "4.0.0",
"prettier": "3.1.1",
"prettier-plugin-sql": "0.15.1",
"semver": "7.5.4",
"sfmc-sdk": "2.0.1",
"simple-git": "3.20.0",
"toposort": "2.0.2",
"update-notifier": "6.0.2",
"winston": "3.11.0",
"yargs": "17.7.2"
},
"devDependencies": {
"assert": "2.1.0",
"axios-mock-adapter": "1.22.0",
"c8": "8.0.1",
"chai": "4.3.10",
"chai-files": "1.4.0",
"eslint": "8.56.0",
"eslint-config-prettier": "9.0.0",
"eslint-config-ssjs": "1.1.11",
"eslint-plugin-jsdoc": "46.8.2",
"eslint-plugin-mocha": "10.2.0",
"eslint-plugin-prettier": "5.1.2",
"eslint-plugin-unicorn": "48.0.0",
"fast-xml-parser": "4.3.2",
"husky": "8.0.3",
"jsdoc-to-markdown": "8.0.0",
"lint-staged": "15.2.0",
"mocha": "10.2.0",
"mock-fs": "5.2.0",
"npm-run-all": "4.1.5",
"prettier-eslint": "16.2.0"
},
"optionalDependencies": {
"fsevents": "*"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
]
},
"type": "module"
}