-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.88 KB
/
package.json
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
{
"name": "@putout/babel",
"version": "3.0.0",
"type": "commonjs",
"author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
"description": "Babel 8 in CommonJS",
"homepage": "https://github.com/putoutjs/babel",
"main": "./bundle/index.js",
"exports": {
".": "./bundle/index.js"
},
"types": "./bundle/index.d.ts",
"repository": {
"type": "git",
"url": "git://github.com/putoutjs/babel.git"
},
"files": [
"bundle",
"README.md",
"LICENSE"
],
"scripts": {
"test": "madrun test",
"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:js": "madrun build:js",
"build:types": "madrun build:types",
"build:fix": "madrun build:fix"
},
"dependencies": {},
"keywords": [
"babel",
"bundle",
"commonjs"
],
"devDependencies": {
"@babel/code-frame": "^8.0.0-alpha.15",
"@babel/generator": "^8.0.0-alpha.15",
"@babel/parser": "^8.0.0-alpha.15",
"@babel/template": "^8.0.0-alpha.15",
"@babel/traverse": "^8.0.0-alpha.15",
"@babel/types": "^8.0.0-alpha.15",
"@swc/core": "^1.3.101",
"@types/node": "^22.10.1",
"acorn-stage3": "^4.0.0",
"c8": "^10.1.2",
"check-dts": "^0.8.0",
"eslint": "^9.4.0",
"eslint-plugin-n": "^17.9.0",
"eslint-plugin-putout": "^23.1.0",
"globals": "^15.0.0",
"madrun": "^10.0.0",
"nodemon": "^3.0.1",
"putout": "^37.2.0",
"supertape": "^10.0.0",
"tsup": "^8.0.1",
"typescript": "^5.2.2"
},
"license": "MIT",
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
}
}