-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
62 lines (62 loc) · 1.41 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
{
"name": "@prettier/sync",
"version": "0.5.2",
"description": "Synchronous version of Prettier",
"homepage": "https://github.com/prettier/prettier-synchronized#readme",
"bugs": {
"url": "https://github.com/prettier/prettier-synchronized/issues"
},
"repository": "prettier/prettier-synchronized",
"funding": "https://github.com/prettier/prettier-synchronized?sponsor=1",
"license": "MIT",
"author": {
"name": "fisker Cheung",
"email": "[email protected]",
"url": "https://www.fiskercheung.com/"
},
"sideEffects": false,
"type": "module",
"main": "./index.cjs",
"exports": {
".": {
"types": "./index.d.cts",
"default": "./index.cjs"
},
"./*": "./*"
},
"files": [
"index.cjs",
"index.d.cts"
],
"scripts": {
"dist": "np --yolo --no-yarn",
"format": "prettier . --write",
"lint": "prettier . --check",
"test": "node --test",
"test-coverage": "c8 node --test",
"release": "run-s lint test dist"
},
"c8": {
"reporter": [
"lcov",
"text"
]
},
"peerDependencies": {
"prettier": "*"
},
"devDependencies": {
"@types/node": "20.11.16",
"c8": "9.1.0",
"npm-run-all": "4.1.5",
"prettier": "3.2.5"
},
"packageManager": "[email protected]",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"make-synchronized": "^0.2.8"
}
}