@putout/bundle 26.20.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +28 -0
- package/bundle/putout.js +130859 -0
- package/package.json +67 -0
package/package.json
ADDED
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@putout/bundle",
|
|
3
|
+
"version": "26.20.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"commitType": "colon",
|
|
6
|
+
"author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
|
|
7
|
+
"description": "🐊Putout bundle suitable for Deno or Browsers",
|
|
8
|
+
"homepage": "https://github.com/putoutjs/bundle",
|
|
9
|
+
"main": "bundle/putout.js",
|
|
10
|
+
"release": false,
|
|
11
|
+
"tag": false,
|
|
12
|
+
"changelog": false,
|
|
13
|
+
"repository": {
|
|
14
|
+
"type": "git",
|
|
15
|
+
"url": "git://github.com/putoutjs/bundle.git"
|
|
16
|
+
},
|
|
17
|
+
"files": [
|
|
18
|
+
"bundle/putout.js",
|
|
19
|
+
"README.md",
|
|
20
|
+
"LICENSE"
|
|
21
|
+
],
|
|
22
|
+
"scripts": {
|
|
23
|
+
"test": "madrun test",
|
|
24
|
+
"watch:test": "madrun watch:test",
|
|
25
|
+
"lint": "madrun lint",
|
|
26
|
+
"fresh:lint": "madrun fresh:lint",
|
|
27
|
+
"lint:fresh": "madrun lint:fresh",
|
|
28
|
+
"fix:lint": "madrun fix:lint",
|
|
29
|
+
"coverage": "madrun coverage",
|
|
30
|
+
"report": "madrun report",
|
|
31
|
+
"build": "madrun build"
|
|
32
|
+
},
|
|
33
|
+
"dependencies": {},
|
|
34
|
+
"keywords": [
|
|
35
|
+
"putout",
|
|
36
|
+
"putout-plugin",
|
|
37
|
+
"putout-plugin-remove",
|
|
38
|
+
"plugin",
|
|
39
|
+
"debugger"
|
|
40
|
+
],
|
|
41
|
+
"devDependencies": {
|
|
42
|
+
"@rollup/plugin-commonjs": "^22.0.1",
|
|
43
|
+
"@rollup/plugin-json": "^4.1.0",
|
|
44
|
+
"@rollup/plugin-node-resolve": "^13.3.0",
|
|
45
|
+
"@rollup/plugin-replace": "^4.0.0",
|
|
46
|
+
"acorn-stage3": "^4.0.0",
|
|
47
|
+
"c8": "^7.5.0",
|
|
48
|
+
"eslint": "^8.0.1",
|
|
49
|
+
"eslint-plugin-node": "^11.0.0",
|
|
50
|
+
"eslint-plugin-putout": "^15.0.0",
|
|
51
|
+
"hermes-parser": "^0.8.0",
|
|
52
|
+
"lerna": "^5.0.0",
|
|
53
|
+
"madrun": "^9.0.0",
|
|
54
|
+
"nodemon": "^2.0.1",
|
|
55
|
+
"putout": "*",
|
|
56
|
+
"rollup": "^2.75.7",
|
|
57
|
+
"rollup-plugin-polyfill-node": "^0.9.0",
|
|
58
|
+
"tenko": "^2.0.1"
|
|
59
|
+
},
|
|
60
|
+
"license": "MIT",
|
|
61
|
+
"engines": {
|
|
62
|
+
"node": ">=16"
|
|
63
|
+
},
|
|
64
|
+
"publishConfig": {
|
|
65
|
+
"access": "public"
|
|
66
|
+
}
|
|
67
|
+
}
|