-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.37 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.37 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "redlint",
"version": "6.4.1",
"type": "module",
"author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
"description": "Lint Filesystem with 🐊Putout",
"homepage": "https://github.com/putoutjs/redlint#readme",
"main": "./lib/redlint.js",
"bin": {
"redlint": "bin/redlint.js"
},
"exports": {
".": "./lib/redlint.js",
"./simple": "./lib/simple.js"
},
"imports": {
"#edit": "./lib/edit/edit.js",
"#test": "./test/create-test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/putoutjs/redlint.git"
},
"scripts": {
"wisdom": "madrun wisdom",
"test": "madrun test",
"test:dts": "madrun test:dts",
"watch:test": "madrun watch:test",
"lint": "madrun lint",
"fresh:lint": "madrun fresh:lint",
"lint:fresh": "madrun lint:fresh",
"fix:lint": "madrun fix:lint",
"coverage": "madrun coverage",
"coverage:html": "madrun coverage:html",
"report": "madrun report"
},
"dependencies": {
"@putout/babel": "^5.2.3",
"@putout/bundler": "^4.0.0",
"@putout/cli-choose": "^4.0.0",
"@putout/cli-filesystem": "^3.0.0",
"@putout/engine-runner": "^28.0.0",
"@putout/formatter-codeframe": "^10.0.0",
"@putout/formatter-dump": "^7.0.0",
"@putout/operator-filesystem": "^11.0.0",
"@putout/operator-json": "^3.1.0",
"@putout/plugin-eslint": "^15.0.0",
"@putout/plugin-filesystem": "^13.0.0",
"@putout/plugin-nodejs": "^21.0.0",
"@putout/plugin-react": "^3.0.0",
"@putout/processor-filesystem": "^8.0.0",
"chalk": "^5.3.0",
"ci-info": "^4.0.0",
"dedent": "^1.7.1",
"enquirer": "^2.4.1",
"fullstore": "^4.0.0",
"ignore": "^7.0.0",
"jest-diff": "^30.2.0",
"montag": "^1.2.1",
"ora": "^9.0.0",
"putout": "^42.0.0",
"redstd": "^1.0.0",
"try-to-catch": "^4.0.0"
},
"keywords": [
"putout",
"redlint",
"AST",
"babel",
"api",
"traverse",
"generate"
],
"devDependencies": {
"@putout/test": "^15.0.0",
"@supertape/operator-strip": "^1.0.0",
"eslint": "^10.0.0",
"eslint-plugin-putout": "^31.0.0",
"just-kebab-case": "^4.2.0",
"madrun": "^13.0.0",
"nodemon": "^3.0.1",
"superc8": "^12.2.4",
"supertape": "^12.0.7"
},
"license": "MIT",
"engines": {
"node": ">=22"
},
"publishConfig": {
"access": "public"
}
}