-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.18 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
{
"name": "eslint-plugin-destructuring-newline",
"version": "0.1.1",
"description": "Enforce placing destructuring properties on separate lines",
"main": "dist/index.js",
"repository": "[email protected]:kusotenpa/eslint-plugin-destructuring-newline.git",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"packageManager": "[email protected]",
"author": "tom",
"license": "MIT",
"keywords": [
"eslint",
"eslint-plugin",
"destructuring",
"newline"
],
"files": [
"dist"
],
"scripts": {
"test": "jest",
"typecheck": "tsc",
"build": "esbuild ./src/index.ts --bundle --platform=node --target=node12 --outfile=./dist/index.js",
"upgrade-interactive": "npx npm-check-updates -i --format group"
},
"devDependencies": {
"@kusotenpa/eslint-plugin": "5.0.1",
"@swc/core": "1.3.85",
"@swc/jest": "0.2.29",
"@types/eslint": "8.44.2",
"@types/estree": "1.0.1",
"core-js": "3.32.2",
"esbuild": "0.19.3",
"eslint": "8.49.0",
"eslint-plugin-local-rules": "2.0.0",
"jest": "29.7.0",
"typescript": "5.2.2"
},
"peerDependencies": {
"eslint": ">=7.0.0"
},
"engines": {
"node": ">=14"
}
}