forked from takaHAL/prettier-plugin-sf-xml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.64 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
{
"name": "prettier-plugin-sf-xml",
"version": "0.3.0",
"description": "Prettier plugin for Salesforce Metadata XML",
"main": "dist/plugin.js",
"scripts": {
"lint": "eslint --cache .",
"prepublishOnly": "tsc -p tsconfig.build.json",
"print": "prettier --plugin=.",
"test": "jest"
},
"dependencies": {
"prettier": ">=2.8.4",
"xml2js": "^0.4.23"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^18.15.3",
"@types/prettier": "^2.7.2",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"jest": "^29.5.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^5.0.2"
},
"repository": {
"type": "git",
"url": "https://github.com/DanielCalle/prettier-plugin-sf-xml.git"
},
"directories": {
"test": "test"
},
"keywords": [
"salesforce",
"xml",
"prettier"
],
"eslintConfig": {
"extends": [
"eslint:recommended",
"prettier"
],
"env": {
"jest": true,
"node": true
},
"rules": {
"no-unused-vars": "off"
},
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module"
}
},
"jest": {
"testRegex": ".test.js$",
"transform": {}
},
"prettier": {
"plugins": [
"./src/plugin.js"
],
"trailingComma": "none"
}
}