-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.09 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
{
"name": "@graham42/prettier-config",
"version": "3.0.0",
"engines": {
"node": ">=14"
},
"description": "Automated prettier config setup",
"main": "src/index.js",
"bin": "src/bin.js",
"files": [
"src/",
"!**/__tests__/**/*"
],
"repository": {
"type": "git",
"url": "https://github.com/Graham42/prettier-config.git"
},
"scripts": {
"check:types": "tsc -p jsconfig.json",
"test": "jest",
"prettier": "prettier --ignore-path .gitignore \"**/*.{js,jsx,ts,tsx,html,vue,css,less,scss,graphql,yaml,yml,json,json5,md,mdx}\"",
"check:format": "npm run prettier -- --check",
"fix:format": "npm run prettier -- --write"
},
"keywords": [
"prettier",
"project-setup",
"auto-formatter"
],
"author": "Graham McGregor",
"license": "MIT",
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^12.20.37",
"@types/prettier": "^2.4.2",
"jest": "^27.5.1",
"tree-node-cli": "^1.5.2",
"typescript": "^4.5.2"
},
"dependencies": {
"chalk": "^4.1.2",
"comment-json": "^4.1.1",
"prettier": "^2.5.1"
}
}