-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
59 lines (59 loc) · 1.5 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
{
"name": "babel-plugin-transform-remove-imports",
"version": "1.8.0",
"description": "Remove the specified import declaration when you use the babel transform to build the package.",
"repository": "https://github.com/uiwjs/babel-plugin-transform-remove-imports",
"homepage": "https://uiwjs.github.io/babel-plugin-transform-remove-imports/",
"typings": "./index.d.ts",
"main": "lib/index.js",
"scripts": {
"prepare": "npm run build && npm run test",
"test": "jest --coverage",
"test:watch": "jest --watchAll --coverage",
"build": "babel src --out-dir lib",
"watch": "babel src --out-dir lib --verbose -w"
},
"keywords": [
"babel-plugin",
"kkt-ssr",
"uiw",
"ssr"
],
"jest": {
"bail": true,
"verbose": true,
"coverageReporters": [
"lcov",
"json-summary"
],
"coveragePathIgnorePatterns": [
"/test/cases"
],
"testMatch": [
"**/*.(spec|test).js?(x)"
]
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
},
"dependencies": {},
"devDependencies": {
"@babel/cli": "7.24.7",
"@babel/core": "7.24.7",
"@babel/plugin-proposal-do-expressions": "7.24.7",
"@babel/plugin-proposal-export-default-from": "7.24.7",
"@babel/preset-env": "7.24.7",
"@babel/preset-react": "7.24.7",
"babel-core": "7.0.0-bridge.0",
"jest": "29.7.0"
},
"files": [
"lib",
"index.d.ts"
],
"author": "Kenny Wong",
"contributors": [
"Slava Fomin II <slava@fomin.io>"
],
"license": "MIT"
}