-
-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.8 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.8 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
{
"name": "@putout/plugin-putout",
"version": "29.10.0",
"type": "module",
"author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
"description": "🐊Putout plugin helps with plugins development",
"homepage": "https://github.com/coderaiser/putout/tree/master/packages/plugin-putout#readme",
"main": "lib/index.js",
"exports": {
".": "./lib/index.js",
"./declare/types": "./lib/declare/types.js"
},
"release": false,
"tag": false,
"changelog": false,
"repository": {
"type": "git",
"url": "git+https://github.com/coderaiser/putout.git"
},
"scripts": {
"wisdom": "madrun wisdom",
"test": "madrun test",
"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",
"report": "madrun report",
"create:declare": "madrun create:declare",
"create:declare:types": "madrun create:declare:types"
},
"dependencies": {
"just-camel-case": "^6.2.0",
"just-kebab-case": "^4.2.0",
"regexp.escape": "^2.0.1",
"try-catch": "^4.0.0"
},
"keywords": [
"putout",
"putout-plugin",
"plugin"
],
"devDependencies": {
"@putout/eslint-flat": "^4.0.0",
"@putout/plugin-destructuring": "*",
"@putout/plugin-esm": "*",
"@putout/plugin-nodejs": "*",
"@putout/plugin-tape": "*",
"@putout/test": "^15.0.0",
"eslint": "^10.0.0",
"eslint-plugin-putout": "^31.0.0",
"madrun": "^13.0.0",
"montag": "^1.2.1",
"nodemon": "^3.0.1",
"superc8": "^12.0.0",
"supertape": "^12.0.0"
},
"peerDependencies": {
"putout": ">=42"
},
"license": "MIT",
"engines": {
"node": ">=22"
},
"publishConfig": {
"access": "public"
}
}