-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
61 lines (61 loc) · 1.06 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
{
"name": "@guardian/prettier",
"version": "8.0.1",
"description": "Prettier config for Guardian JavaScript & TypeScript projects",
"main": "index.js",
"files": [
"index.d.ts"
],
"scripts": {
"fix": "wireit",
"lint": "wireit",
"tsc": "wireit"
},
"devDependencies": {
"@guardian/eslint-config": "workspace:*",
"eslint": "9.14.0",
"prettier": "3.2.2",
"tslib": "2.6.2",
"wireit": "0.14.8"
},
"peerDependencies": {
"prettier": "^3.2.2",
"tslib": "^2.6.2"
},
"wireit": {
"fix": {
"command": "eslint --cache --color . --fix",
"files": [
"**",
"../../../.eslint*",
"!.eslintcache"
],
"clean": false,
"output": [
"."
]
},
"lint": {
"command": "eslint --cache --color .",
"files": [
"**",
"../../../.eslint*",
"!.eslintcache"
],
"output": []
},
"tsc": {
"command": "tsc --pretty",
"files": [
"**",
"tsconfig.json",
"../tsconfig/tsconfig.json",
"../../../@types/**",
"../../../tsconfig.base.json",
"!(dist)/**",
"!.eslintcache"
],
"output": []
}
}
}