-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.03 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
{
"name": "@checkdigit/prettier-config",
"version": "5.5.1",
"private": false,
"description": "Check Digit code formatting configuration",
"repository": {
"type": "git",
"url": "git+https://github.com/checkdigit/prettier-config.git"
},
"license": "MIT",
"author": "Check Digit, LLC",
"type": "module",
"main": "index.json",
"files": [
"index.json"
],
"scripts": {
"ci:compile": "",
"ci:lint": "",
"ci:style": "npm run prettier",
"ci:test": "npm run ci:style && prettier --version | grep -q '3.3.3'",
"prepare": "",
"prettier": "prettier --ignore-path .gitignore --list-different .",
"prettier:fix": "prettier --ignore-path .gitignore --config index.json --write .",
"test": "npm run ci:test"
},
"prettier": "./index.json",
"peerDependencies": {
"@prettier/plugin-xml": "3.4.1",
"prettier": "3.3.3",
"prettier-plugin-packagejson": "2.5.1",
"prettier-plugin-svelte": "3.2.6",
"prettier-plugin-tailwindcss": "0.6.5"
},
"engines": {
"node": ">=20.15"
}
}