-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1020 Bytes
/
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
{
"name": "babel-plugin-transform-replace-export-default",
"version": "1.0.4",
"description": "Replace `export default` with `return`, or just remove `export default`.",
"homepage": "https://kktjs.github.io/babel-plugin-transform-replace-export-default",
"typings": "./lib/index.d.ts",
"main": "./lib/index.js",
"scripts": {
"watch": "tsbb watch",
"build": "tsbb build",
"test": "tsbb test",
"coverage": "npm run build && tsbb test --coverage --bail",
"start": "idoc --watch",
"doc": "idoc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kktjs/babel-plugin-transform-replace-export-default.git"
},
"files": [
"lib",
"src"
],
"keywords": [
"babel",
"babel-plugin-transform",
"babel-plugin"
],
"author": "jaywcjlove",
"license": "MIT",
"peerDependencies": {
"@babel/core": "^7.0.0-0"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.15.5",
"idoc": "^1.25.1",
"tsbb": "^4.1.5"
}
}