-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.85 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 3.85 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "@putout/printer",
"version": "18.12.0",
"type": "module",
"author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
"description": "Simplest possible opinionated Babel AST printer for 🐊Putout",
"homepage": "https://github.com/putoutjs/printer#readme",
"main": "./lib/printer.js",
"exports": {
".": "./lib/printer.js",
"./is": "./lib/tokenize/is.js",
"./params": "./lib/tokenize/expressions/function/params.js",
"./type-checker": "./lib/tokenize/type-checker/type-checker.js",
"./type-checker/instrument": "./lib/tokenize/type-checker/instrument.js",
"./type-checker/report": "./lib/tokenize/type-checker/report.js",
"./type-checker/when-tests-ends": "./lib/tokenize/type-checker/when-tests-ends.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/putoutjs/printer.git"
},
"scripts": {
"wisdom": "madrun wisdom",
"test": "madrun test",
"test:check": "madrun test:check",
"test:dts": "madrun test:dts",
"watch:test": "madrun watch:test",
"lint": "madrun lint",
"lint:redlint": "madrun lint:redlint",
"lint:putout": "madrun lint:putout",
"fresh": "madrun fresh",
"fix:lint": "madrun fix:lint",
"fix:lint:redlint": "madrun fix:lint:redlint",
"fix:lint:putout": "madrun fix:lint:putout",
"coverage": "madrun coverage",
"coverage:html": "madrun coverage:html",
"report": "madrun report"
},
"dependencies": {
"@putout/babel": "^5.0.0",
"@putout/compare": "^19.0.1",
"@putout/operate": "^15.0.0",
"@putout/operator-json": "^3.1.0",
"fullstore": "^4.0.0",
"jessy": "^5.0.0",
"just-snake-case": "^3.2.0",
"parse-import-specifiers": "^1.0.1",
"rendy": "^5.0.0"
},
"keywords": [
"putout",
"printer",
"AST",
"babel",
"api",
"traverse",
"generate"
],
"imports": {
"#test/printer": "./test/print-extension/print-extension.js",
"#test/fixture": "./test/fixture.js",
"#printer": "./lib/printer.js",
"#test": "./test/create-test.js",
"#is": "./lib/tokenize/is.js",
"#mark": "./lib/tokenize/mark.js",
"#maybe-parens": "./lib/tokenize/maybe/maybe-parens.js",
"#maybe-declare": "./lib/tokenize/maybe/maybe-declare.js",
"#print-params": "./lib/tokenize/expressions/function/params.js",
"#import-attributes": "./lib/tokenize/statements/import-declaration/import-attribute.js",
"#types": "./lib/types.js",
"#type-checker": "./lib/tokenize/type-checker/type-checker.js",
"#type-checker/instrument": "./lib/tokenize/type-checker/instrument.js",
"#type-checker/report": "./lib/tokenize/type-checker/report.js",
"#type-checker/when-tests-ends": "./lib/tokenize/type-checker/when-tests-ends.js",
"#is-concatenation": "./lib/tokenize/expressions/binary-expression/is-concatenation.js",
"#comments": "./lib/tokenize/comments/comments.js"
},
"devDependencies": {
"@babel/parser": "^7.28.5",
"@putout/eslint": "^6.0.0",
"@putout/eslint-flat": "^4.0.0",
"@putout/plugin-minify": "^12.0.0",
"@putout/plugin-printer": "^8.0.0",
"@putout/plugin-promises": "^19.0.0",
"@putout/plugin-react-hook-form": "^6.0.0",
"@putout/plugin-react-hooks": "^9.0.0",
"@supertape/operator-strip": "^1.0.0",
"acorn": "^8.8.2",
"chalk": "^5.6.2",
"check-dts": "^1.0.0",
"escover": "^6.0.0",
"eslint": "^10.0.0",
"eslint-plugin-putout": "^31.0.0",
"estree-to-babel": "^12.0.0",
"goldstein": "^7.0.0",
"just-kebab-case": "^4.2.0",
"madrun": "^13.0.0",
"montag": "^1.0.0",
"nodemon": "^3.0.1",
"putout": "^42.0.1",
"redlint": "^6.0.0",
"samadhi": "^4.0.2",
"superc8": "^12.2.4",
"supertape": "^12.0.9",
"try-catch": "^4.0.6",
"typescript": "^6.0.2"
},
"license": "MIT",
"engines": {
"node": ">=22.13"
},
"publishConfig": {
"access": "public"
}
}