-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.63 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "eslint-plugin-esfold",
"version": "0.1.12",
"description": "A single ESLint rule, esfold/breaks, that decides where the newlines go.",
"repository": {
"type": "git",
"url": "git+https://github.com/bikeshaving/esfold.git"
},
"homepage": "https://github.com/bikeshaving/esfold#readme",
"bugs": {
"url": "https://github.com/bikeshaving/esfold/issues"
},
"author": "Brian Kim",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./index": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./index.js": {
"import": "./dist/index.js"
},
"./package.json": "./dist/package.json"
},
"files": [
"README.md",
"LICENSE",
"dist/"
],
"scripts": {
"test": "libuild test -p node",
"build": "libuild build",
"typecheck": "tsc --noEmit",
"stage": "libuild stage --provenance",
"prepublishOnly": "echo 'ERROR: Cannot publish from root directory. Use libuild to publish or stage the package.' && exit 1"
},
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"formatter",
"line-breaks"
],
"license": "MIT",
"peerDependencies": {
"eslint": ">=9"
},
"devDependencies": {
"@b9g/libuild": "^0.2.21",
"@stylistic/eslint-plugin": "^5.10.0",
"@types/node": "^26.2.0",
"@typescript-eslint/types": "^8.67.0",
"@typescript-eslint/utils": "^8.67.0",
"eslint": "^10.8.1",
"prettier": "^3.9.4",
"typescript": "^5.9.3",
"typescript-eslint": "^8.67.0"
},
"module": "./dist/index.js",
"types": "./dist/index.d.ts"
}