-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.02 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.02 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
{
"name": "@aniftyco/prettier",
"version": "1.3.0",
"description": "Standardized code formatting via Prettier config for NiftyCo projects",
"license": "MIT",
"repository": "aniftyco/prettier",
"main": "prettier.json",
"author": {
"name": "Nifty Development, LLC",
"url": "https://aniftyco.com"
},
"contributors": [
{
"name": "Josh Manders",
"email": "josh@aniftyco.com"
}
],
"engines": {
"npm": ">=v8.15.0",
"node": ">=16.17.0"
},
"publishConfig": {
"access": "public"
},
"files": [
"prettier.json"
],
"keywords": [
"prettier",
"config",
"configuration",
"aniftyco",
"niftyco"
],
"prettier": "./prettier.json",
"scripts": {
"test": "prettier --config prettier.json --check tests"
},
"devDependencies": {
"@types/node": "^18.13.0",
"prettier": "^2.8.4"
},
"dependencies": {
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"prettier-plugin-blade": "^2.1.21",
"prettier-plugin-tailwindcss": "^0.6.11"
}
}