This repository was archived by the owner on Apr 7, 2024. It is now read-only.
forked from Accenture/sfmc-devtools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.36 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
{
"name": "mcdev",
"version": "3.1.3",
"description": "Accenture Salesforce Marketing Cloud DevTools",
"author": "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#readme",
"bugs": {
"url": "https://github.com/Accenture/sfmc-devtools/issues",
"email": "[email protected]"
},
"funding": {
"type": "corporate",
"url": "https://github.com/Accenture/sfmc-devtools"
},
"main": "./lib/index.js",
"bin": {
"mcdev": "./lib/cli.js"
},
"engines": {
"node": ">=14.16"
},
"scripts": {
"start": "node lib/index.js",
"mcdev": "node lib/index.js",
"build": "run-s lint docs",
"debug": "node --nolazy --inspect-brk=9229 lib/index.js",
"docs": "jsdoc2md --files lib/**/*.js > docs/dist/documentation.md",
"lint": "eslint --fix lib/**/*.js && eslint --fix test/**/*.js && prettier --write lib/**/*.js",
"test": "mocha --recursive",
"upgrade": "npm-check --update",
"prepare": "husky install"
},
"dependencies": {
"bluebird": "3.7.2",
"cli-progress": "3.10.0",
"command-exists": "1.2.9",
"console.table": "0.10.0",
"fs-extra": "10.0.0",
"inquirer": "8.2.0",
"json-to-table": "4.2.1",
"mustache": "4.2.0",
"prettier": "2.5.1",
"semver": "7.3.5",
"sfmc-fuelsdk-node": "2.4.0",
"simple-git": "2.48.0",
"sql-formatter-plus": "1.3.6",
"toposort": "2.0.2",
"update-notifier-git": "5.0.3",
"winston": "3.3.4",
"yargs": "17.3.0"
},
"devDependencies": {
"chai": "4.3.4",
"eslint": "8.4.1",
"eslint-config-prettier": "8.3.0",
"eslint-config-ssjs": "1.1.11",
"eslint-plugin-mocha": "10.0.1",
"eslint-plugin-prettier": "4.0.0",
"husky": "7.0.4",
"jsdoc-to-markdown": "7.1.0",
"lint-staged": "12.1.2",
"mocha": "9.1.3",
"npm-check": "5.9.2",
"npm-run-all": "4.1.5"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
}
}