-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
73 lines (73 loc) · 2.16 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
{
"name": "prettier-plugin-elm",
"version": "0.11.0",
"description": "Adds Elm language support to Prettier via elm-format",
"keywords": [
"elm",
"elm-format",
"gicentre",
"prettier",
"prettier-plugin",
"typescript"
],
"repository": "https://github.com/gicentre/prettier-plugin-elm",
"license": "BSD-3-Clause",
"main": "dist/main.js",
"scripts": {
"build": "tsc",
"clean": "rimraf cache coverage dist",
"fix": "npm-run-all2 --continue-on-error \"fix:*\"",
"fix:eslint": "eslint --fix .",
"fix:markdownlint": "markdownlint --fix .",
"fix:prettier": "prettier --write .",
"fix:yarn-dedupe": "yarn dedupe",
"lint": "npm-run-all2 --continue-on-error \"lint:*\"",
"lint:markdownlint": "markdownlint .",
"lint:prettier": "prettier --check .",
"lint:tsc": "tsc --noEmit",
"lint:eslint": "eslint --report-unused-disable-directives .",
"lint:yarn-dedupe": "yarn dedupe --check",
"prepare": "husky install",
"prepublishOnly": "yarn lint && yarn test",
"test": "yarn clean && yarn build && yarn node --no-warnings --experimental-vm-modules $(yarn bin jest)"
},
"lint-staged": {
"**": [
"markdownlint --fix",
"prettier --write"
]
},
"dependencies": {
"elm-format": "0.8.7",
"execa": "^5.1.1",
"make-dir": "^3.1.0",
"object-hash": "^3.0.0",
"serialize-error": "^8.1.0",
"temp-dir": "^2.0.0"
},
"devDependencies": {
"@kachkaev/eslint-config-base": "0.5.1",
"@kachkaev/markdownlint-config": "0.5.0",
"@types/jest": "29.5.0",
"@types/object-hash": "^3.0.2",
"@types/prettier-v1": "npm:@types/[email protected]",
"@types/prettier-v2": "npm:@types/[email protected]",
"eslint": "8.38.0",
"husky": "8.0.3",
"jest": "29.5.0",
"lint-staged": "13.2.1",
"markdownlint-cli": "0.33.0",
"npm-run-all2": "6.1.2",
"prettier": "3.0.0",
"prettier-plugin-packagejson": "2.4.5",
"prettier-v1": "npm:[email protected]",
"prettier-v2": "npm:[email protected]",
"rimraf": "5.0.0",
"sleep-promise": "9.1.0",
"typescript": "5.0.4"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=14.16.0"
}
}