-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2 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
{
"name": "@putout/babel",
"version": "5.4.2",
"type": "module",
"author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
"description": "Babel 8 bundled",
"homepage": "https://github.com/putoutjs/babel",
"main": "./bundle/index.js",
"exports": {
".": "./bundle/index.js"
},
"types": "./bundle/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/putoutjs/babel.git"
},
"files": [
"bundle",
"README.md",
"LICENSE"
],
"scripts": {
"test": "madrun test",
"test:js": "madrun test:js",
"_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",
"report": "madrun report",
"wisdom": "madrun wisdom",
"clean": "madrun clean",
"build": "madrun build",
"build:babel": "madrun build:babel",
"build:js": "madrun build:js",
"build:types": "madrun build:types",
"build:fix:dts": "madrun build:fix:dts"
},
"dependencies": {},
"keywords": [
"putout",
"babel",
"bundle",
"commonjs"
],
"devDependencies": {
"rollup-plugin-visualizer": "^7.0.1",
"@babel/code-frame": "8.0.0-rc.3",
"@babel/generator": "8.0.0-rc.3",
"@babel/parser": "8.0.0-rc.3",
"@babel/template": "8.0.0-rc.3",
"@babel/traverse": "8.0.0-rc.3",
"@babel/types": "8.0.0-rc.3",
"@swc/core": "^1.3.101",
"@types/node": "^25.0.6",
"acorn-stage3": "^4.0.0",
"check-dts": "^1.0.0",
"eslint": "^10.0.2",
"eslint-plugin-n": "^17.9.0",
"eslint-plugin-putout": "^31.1.1",
"globals": "^17.0.0",
"madrun": "^13.0.0",
"nodemon": "^3.0.1",
"putout": "^42.0.23",
"superc8": "^12.1.2",
"supertape": "^12.0.12",
"tsup": "^8.0.1",
"typescript": "^6.0.2"
},
"license": "MIT",
"engines": {
"node": ">=22"
},
"publishConfig": {
"access": "public"
}
}