-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.28 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.28 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
{
"name": "eslint-plugin-sfmc",
"version": "4.0.1",
"description": "ESLint plugin for Salesforce Marketing Cloud Engagement+Next - AMPscript, Server-Side JavaScript (SSJS) and Handlebars",
"type": "module",
"main": "src/index.js",
"exports": {
".": "./src/index.js",
"./parser": "./src/ampscript-parser.js"
},
"files": [
"src",
"docs",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/JoernBerkefeld/eslint-plugin-sfmc.git"
},
"bugs": {
"url": "https://github.com/JoernBerkefeld/eslint-plugin-sfmc/issues"
},
"homepage": "https://github.com/JoernBerkefeld/eslint-plugin-sfmc#readme",
"author": "Joern Berkefeld",
"keywords": [
"eslint",
"eslintplugin",
"ampscript",
"ssjs",
"salesforce",
"marketing-cloud",
"sfmc"
],
"dependencies": {
"@handlebars/parser": "^2.2.2",
"ampscript-data": "^3.0.0",
"ampscript-parser": "^0.2.0",
"handlebars-data": "^0.3.0",
"ssjs-data": "^0.14.0"
},
"peerDependencies": {
"eslint": ">=9.0.0"
},
"scripts": {
"test": "node --test tests/rules.test.js && node --test tests/fixtures.test.mjs && node --test tests/autofix-manual.test.mjs",
"test:autofix-manual": "node --test tests/autofix-manual.test.mjs",
"test:fixtures": "node --test tests/fixtures.test.mjs",
"test:fixtures:update": "node --test tests/fixtures.test.mjs -- --update-snapshots",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"prepare": "husky || true",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"license": "MIT",
"engines": {
"node": ">=22.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.6.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsdoc": "^63.0.12",
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-unicorn": "^71.1.0",
"globals": "^17.7.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.8",
"prettier": "^3.9.4"
},
"lint-staged": {
"*.{js,mjs,cjs}": [
"eslint --fix"
]
}
}