-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.02 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.02 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
{
"name": "@putout/bundle",
"version": "5.4.1",
"type": "module",
"author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
"description": "🐊Putout bundle suitable for Deno and Browsers",
"homepage": "https://github.com/putoutjs/bundle",
"main": "bundle/putout.js",
"exports": {
".": "./bundle/putout.js",
"./dev": "./bundle/putout.js",
"./slim": "./bundle/putout.slim.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/putoutjs/bundle.git"
},
"files": [
"bundle",
"README.md",
"LICENSE"
],
"scripts": {
"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",
"wisdom": "madrun wisdom",
"build": "madrun build",
"build:putout": "madrun build:putout",
"build:putout:slim": "madrun build:putout:slim",
"build:putout:esm": "madrun build:putout:esm"
},
"dependencies": {},
"keywords": [
"putout",
"babel",
"codemod",
"putout-editor",
"bundle",
"deno",
"esm",
"linter",
"fix",
"bun",
"printer"
],
"devDependencies": {
"@rollup/plugin-alias": "^6.0.0",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-replace": "^6.0.1",
"@rollup/plugin-terser": "^0.4.0",
"acorn-stage3": "^4.0.0",
"c8": "^10.1.2",
"eslint": "^10.0.0",
"eslint-plugin-putout": "^31.0.0",
"hermes-parser": "^0.33.0",
"madrun": "^13.0.0",
"nodemon": "^3.0.1",
"putout": "^42.0.15",
"rollup": "^4.24.2",
"rollup-plugin-node-externals": "^8.0.0",
"rollup-plugin-polyfill-node": "^0.13.0",
"rollup-plugin-visualizer": "^7.0.0",
"tenko": "^2.0.1"
},
"license": "MIT",
"engines": {
"node": ">=22"
},
"publishConfig": {
"access": "public"
}
}